diff options
author | deva <deva> | 2010-02-12 13:53:00 +0000 |
---|---|---|
committer | deva <deva> | 2010-02-12 13:53:00 +0000 |
commit | c44cc1989fe1b4cd94c115fb9a62b73afc46e62f (patch) | |
tree | 880523c9e8be8c4c43498faf5c3fe8bdb1798cda /server/src/macrotool.cc | |
parent | 305ddf3bdb16177420f480b006550508174a734e (diff) |
Fix compiler warnings.
Diffstat (limited to 'server/src/macrotool.cc')
-rw-r--r-- | server/src/macrotool.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/macrotool.cc b/server/src/macrotool.cc index bb8c8fc..40ca845 100644 --- a/server/src/macrotool.cc +++ b/server/src/macrotool.cc @@ -117,13 +117,13 @@ int main(int argc, char *argv[]) case '?': case 'h': - printf(version_str); + printf("%s", version_str); printf(usage_str, argv[0]); return 0; case 'v': - printf(version_str); - printf(copyright_str); + printf("%s", version_str); + printf("%s", copyright_str); return 0; default: |