diff options
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: |