Consolodated some common code into print_matched_line to make 'grep_file' a
little more terse & clean. Also made a few minor formatting changes.
diff --git a/findutils/grep.c b/findutils/grep.c
index 10ad76c..2f240e4 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -48,6 +48,9 @@
 
 static void print_matched_line(char *line, int linenum)
 {
+	if (print_count_only)
+		return;
+
 	if (print_filename)
 		printf("%s:", cur_file);
 	if (print_line_num)
@@ -75,16 +78,12 @@
 			}
 
 			nmatches++;
+			print_matched_line(line, linenum);
 
-			if (!print_count_only)
-				print_matched_line(line, linenum);
-
-		} else if (ret == REG_NOMATCH && invert_search) {
-
+		}
+		else if (ret == REG_NOMATCH && invert_search) {
 			nmatches++;
-			
-			if (!print_count_only)
-				print_matched_line(line, linenum);
+			print_matched_line(line, linenum);
 		}
 
 		free(line);
@@ -161,7 +160,8 @@
 	 * stdin. Otherwise, we grep through all the files specified. */
 	if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) {
 		grep_file(stdin);
-	} else {
+	}
+	else {
 		int i;
 		FILE *file;
 		for (i = optind + 1; i < argc; i++) {
@@ -170,7 +170,8 @@
 			if (file == NULL) {
 				if (!suppress_err_msgs)
 					errorMsg("%s: %s\n", cur_file, strerror(errno));
-			} else {
+			}
+			else {
 				grep_file(file);
 				fclose(file);
 			}
diff --git a/grep.c b/grep.c
index 10ad76c..2f240e4 100644
--- a/grep.c
+++ b/grep.c
@@ -48,6 +48,9 @@
 
 static void print_matched_line(char *line, int linenum)
 {
+	if (print_count_only)
+		return;
+
 	if (print_filename)
 		printf("%s:", cur_file);
 	if (print_line_num)
@@ -75,16 +78,12 @@
 			}
 
 			nmatches++;
+			print_matched_line(line, linenum);
 
-			if (!print_count_only)
-				print_matched_line(line, linenum);
-
-		} else if (ret == REG_NOMATCH && invert_search) {
-
+		}
+		else if (ret == REG_NOMATCH && invert_search) {
 			nmatches++;
-			
-			if (!print_count_only)
-				print_matched_line(line, linenum);
+			print_matched_line(line, linenum);
 		}
 
 		free(line);
@@ -161,7 +160,8 @@
 	 * stdin. Otherwise, we grep through all the files specified. */
 	if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) {
 		grep_file(stdin);
-	} else {
+	}
+	else {
 		int i;
 		FILE *file;
 		for (i = optind + 1; i < argc; i++) {
@@ -170,7 +170,8 @@
 			if (file == NULL) {
 				if (!suppress_err_msgs)
 					errorMsg("%s: %s\n", cur_file, strerror(errno));
-			} else {
+			}
+			else {
 				grep_file(file);
 				fclose(file);
 			}