diff options
author | Michael Mann <mmann78@netscape.net> | 2016-07-24 08:53:39 -0400 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2016-07-25 04:26:50 +0000 |
commit | 1da1f945e2988080add4923dc2021753e3b2f7c1 (patch) | |
tree | 2839b66064e34ba99a6d031778330f20497b5e93 /ws_version_info.c | |
parent | ee7f9c33f63532bc69899a0750177756be53c0c1 (diff) | |
download | wireshark-1da1f945e2988080add4923dc2021753e3b2f7c1.tar.gz wireshark-1da1f945e2988080add4923dc2021753e3b2f7c1.tar.bz2 wireshark-1da1f945e2988080add4923dc2021753e3b2f7c1.zip |
Fix checkAPI.pl warnings about printf
Many of the complaints from checkAPI.pl for use of printf are when its embedded
in an #ifdef and checkAPI isn't smart enough to figure that out.
The other (non-ifdef) use is dumping internal structures (which is a type of
debug functionality)
Add a "ws_debug_printf" macro for printf to pacify the warnings.
Change-Id: I63610e1adbbaf2feffb4ec9d4f817247d833f7fd
Reviewed-on: https://code.wireshark.org/review/16623
Reviewed-by: Michael Mann <mmann78@netscape.net>
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ws_version_info.c')
-rw-r--r-- | ws_version_info.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ws_version_info.c b/ws_version_info.c index f1c5ee02f9..6f7e7fb40d 100644 --- a/ws_version_info.c +++ b/ws_version_info.c @@ -44,6 +44,7 @@ #include <wsutil/ws_cpuid.h> #include <wsutil/copyright_info.h> #include <wsutil/os_version_info.h> +#include <wsutil/ws_printf.h> /* ws_debug_printf */ /* * If the string doesn't end with a newline, append one. @@ -379,7 +380,7 @@ void show_version(const gchar *prog_name_str, GString *comp_info_str, GString *runtime_info_str) { - printf("%s %s\n" + ws_debug_printf("%s %s\n" "\n" "%s" "\n" |