diff --git a/src/files.c b/src/files.c
index 0c800228bcd940237d04f412785703c649e47b04..4c82c952add1372a8230749d0e069650280d6df5 100644
--- a/src/files.c
+++ b/src/files.c
@@ -2404,8 +2404,8 @@ char *input_tab(char *buf, int place, bool *lastwastab, int *newplace,
 	    /* Print the list of matches */
 	    for (i = 0, col = 0; i < num_matches; i++) {
 
-		/* make each filename shown be the same length as the longest
-		   filename, with two spaces at the end */
+		/* make each filename shown be the same length as the
+		   longest filename, with two spaces at the end */
 		snprintf(foo, longestname + 1, matches[i]);
 		while (strlen(foo) < longestname)
 		    strcat(foo, " ");