aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util-unix.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-10-31 10:30:17 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-10-31 10:30:17 +0000
commitee2b7fd393064d7f48bb4867696f3288782ba6b9 (patch)
treead58bc01b508fe6803d76703aad31bd4a3ac0070 /capture-pcap-util-unix.c
parent8608c8f1ded10fbaee00ff90d1fe7ca90b266629 (diff)
Fix some "format not a string literal and no format arguments" warnings.
svn path=/trunk/; revision=26642
Diffstat (limited to 'capture-pcap-util-unix.c')
-rw-r--r--capture-pcap-util-unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture-pcap-util-unix.c b/capture-pcap-util-unix.c
index 2ecfa3757f..c1a6720a00 100644
--- a/capture-pcap-util-unix.c
+++ b/capture-pcap-util-unix.c
@@ -359,7 +359,7 @@ get_runtime_pcap_version(GString *str)
{
g_string_append_printf(str, "with ");
#ifdef HAVE_PCAP_LIB_VERSION
- g_string_append_printf(str, pcap_lib_version());
+ g_string_append(str, pcap_lib_version());
#else
g_string_append(str, "libpcap (version unknown)");
#endif