summaryrefslogtreecommitdiff
path: root/rdoff
diff options
context:
space:
mode:
authorVictor van den Elzen <victor.vde@gmail.com>2009-08-13 15:07:59 +0200
committerVictor van den Elzen <victor.vde@gmail.com>2009-08-13 15:07:59 +0200
commit0dd450c0efc9474396759aea32acf2913a829bd4 (patch)
tree6b6ea0df88942ce07d1e73ad1c1c7a66826e6098 /rdoff
parent15bb2330368783724cf526dfec5c02d028bd5b98 (diff)
downloadnasm-0dd450c0efc9474396759aea32acf2913a829bd4.tar.gz
Use fputs instead of fprintf for plain strings
LLVM's Clang warns about this. outieee.c had a real problem.
Diffstat (limited to 'rdoff')
-rw-r--r--rdoff/rdflib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdoff/rdflib.c b/rdoff/rdflib.c
index e12c6c6b..1213bead 100644
--- a/rdoff/rdflib.c
+++ b/rdoff/rdflib.c
@@ -166,7 +166,7 @@ int main(int argc, char **argv)
if (argc < 3 || !strncmp(argv[1], "-h", 2)
|| !strncmp(argv[1], "--h", 3)) {
- printf(usage);
+ fputs(usage, stdout);
exit(1);
}