commit d6a0fc915b3162e6dc096a8987186ad432022e4b
Author: FRIGN <[email protected]>
AuthorDate: Mon May 30 18:26:01 2016 +0200
Commit: FRIGN <[email protected]>
CommitDate: Mon May 30 18:26:01 2016 +0200
[driver] Print diagnostic message to stderr instead of stdout
diff --git a/driver/posix/scc.c b/driver/posix/scc.c
index 9040925..eec985d 100644
--- a/driver/posix/scc.c
+++ b/driver/posix/scc.c
@@ -140,7 +140,7 @@ main(int argc, char *argv[])
arch = EARGF(usage());
break;
case '-':
- printf("scc: ignored parameter --%s\n", EARGF(usage()));
+ fprintf(stderr, "scc: ignored parameter --%s\n",
EARGF(usage()));
break;
default:
usage();