--- src/eix.cc.orig	2005-11-17 13:22:36.000000000 +0100
+++ src/eix.cc	2006-01-16 10:13:52.000000000 +0100
@@ -417,7 +417,10 @@
 	}
 
 	fputs("\n", stdout);
-	printf("Found %i matches\n", match_count);
+	if(match_count == 1)
+		printf("Found 1 match\n");
+	else
+		printf("Found %i matches\n", match_count);
 
 	return EXIT_SUCCESS;
 }

