Bugfix in der Listenanzeige von man -m

Change-Id: I69277c20182815ef6d129f10c0202a5c4f343006
diff --git a/std/shells/magier/fileview.c b/std/shells/magier/fileview.c
index a1c0ff4..c2d5366 100644
--- a/std/shells/magier/fileview.c
+++ b/std/shells/magier/fileview.c
@@ -510,7 +510,7 @@
         int maxwidth = max(map(tmp2, #'sizeof));
         int tablecols = tty_cols/maxwidth;
         list += "-"*tty_cols+"\n"+
-                sprintf("%#-*.*s", tty_cols, tablecols, implode(tmp2,"\n"))+
+                sprintf("%#-*.*s\n", tty_cols, tablecols, implode(tmp2,"\n"))+
                 "-"*tty_cols+"\n";
       }
       printf(list);