shithub: rgbds

Download patch

ref: c3fa922c2f7e09bdf577ca3041bfdbc683e55a91
parent: b23c5ab4ba35443da58581e48e0d2788f073eae1
author: anthony <[email protected]>
date: Tue Jan 12 12:55:07 EST 2010

fix quiet mode oversight

A line never printed because it checks for the wrong flag instead
of OPTF_QUIET. This fixes it.

--- a/src/fix/main.c
+++ b/src/fix/main.c
@@ -544,7 +544,7 @@
 			0;
 			int ch;
 
-			if (!(ulOptions & OPTF_VALIDATE)) {
+			if (!(ulOptions & OPTF_QUIET)) {
 				printf("Validating header:\n");
 			}
 			fflush(stdout);