fix segfault if user only specifies 1 file
diff --git a/coreutils/comm.c b/coreutils/comm.c
index 6b7b955..f390490 100644
--- a/coreutils/comm.c
+++ b/coreutils/comm.c
@@ -142,7 +142,7 @@
 
 	opt = bb_getopt_ulflags(argc, argv, "123");
 
-	if ((opt & 0x80000000UL) || (optind == argc))
+	if (optind != argc + 2)
 		bb_show_usage();
 
 	if (opt & COMM_OPT_1)