aboutsummaryrefslogtreecommitdiffstats
path: root/epan/value_string.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-08 18:50:39 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-08 18:50:39 +0000
commitd615067ecfe859cadfb09c0896864a4bff299d4f (patch)
treeae44175ca8fd23548fcec5833098b535af5e372c /epan/value_string.c
parentb5ff280c656047376ee397671794e3b15e7ac3ae (diff)
various code cleanup:
-use g_snprintf instead of sprintf and snprintf -use g_strdup_printf where appropriate -remove #include "snprintf.h" (as only g_snprintf should be used) -replace some more alloc/realloc/calloc/free with their glib pendants git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15264 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/value_string.c')
-rw-r--r--epan/value_string.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/epan/value_string.c b/epan/value_string.c
index d2874379de..45daa54184 100644
--- a/epan/value_string.c
+++ b/epan/value_string.c
@@ -28,9 +28,6 @@
#include <stdio.h>
-#ifdef NEED_SNPRINTF_H
-# include "snprintf.h"
-#endif
#include "to_str.h"
#include "value_string.h"
@@ -56,7 +53,7 @@ val_to_str(guint32 val, const value_string *vs, const char *fmt) {
} else {
cur = &str[0][0];
}
- snprintf(cur, 64, fmt, val);
+ g_snprintf(cur, 64, fmt, val);
return cur;
}