summaryrefslogtreecommitdiff
path: root/epan/expert.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-01-25 13:20:53 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-01-25 13:20:53 +0000
commit9092486f58df8c57298a990c25c8e2255f28d63b (patch)
tree6c904aeedae6571117daa533cd89b73688cac3bd /epan/expert.h
parent2b5f360066820e98e59e408a56d98e4f4c6daa7a (diff)
downloadwireshark-9092486f58df8c57298a990c25c8e2255f28d63b.tar.gz
Changed from using own defined GNUC_FORMAT_CHECK to G_GNUC_PRINTF
defined in GLib. Removed epan/gnuc_format_check.h. svn path=/trunk/; revision=31657
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__ */