aboutsummaryrefslogtreecommitdiffstats
path: root/epan/expert.h
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-25 13:20:53 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-25 13:20:53 +0000
commit19151755420ae1485ee59b2f5413de0abae0e5ac (patch)
tree6c904aeedae6571117daa533cd89b73688cac3bd /epan/expert.h
parent54b41eb42aa25864407250c78c09dbd59cc648c7 (diff)
Changed from using own defined GNUC_FORMAT_CHECK to G_GNUC_PRINTF
defined in GLib. Removed epan/gnuc_format_check.h. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31657 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/expert.h')
-rw-r--r--epan/expert.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/expert.h b/epan/expert.h
index 054d7e6c7c..52aeb53e16 100644
--- a/epan/expert.h
+++ b/epan/expert.h
@@ -27,7 +27,6 @@
#ifndef __EXPERT_H__
#define __EXPERT_H__
-#include "gnuc_format_check.h"
#include <epan/proto.h>
#include "value_string.h"
@@ -65,6 +64,6 @@ expert_get_highest_severity(void);
extern void
expert_add_info_format(packet_info *pinfo, proto_item *pi, int group,
int severity, const char *format, ...)
- GNUC_FORMAT_CHECK(printf, 5, 6);
+ G_GNUC_PRINTF(5, 6);
#endif /* __EXPERT_H__ */