aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-05-20 17:27:05 +0000
committerGerald Combs <gerald@wireshark.org>2013-05-20 17:27:05 +0000
commitc0702583d310d1bba45066446cb5b40c4cdf410c (patch)
tree33566b110a2ae7fd28f3a0ef8a40f3d6a3a98d8d /epan/dfilter
parenta02e821fe6d6c59387fe235bde6fd2e00f190566 (diff)
Make the minimum supported GLib version 2.16.
svn path=/trunk/; revision=49444
Diffstat (limited to 'epan/dfilter')
-rw-r--r--epan/dfilter/dfilter-int.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/epan/dfilter/dfilter-int.h b/epan/dfilter/dfilter-int.h
index 926e6577c2..1b360cf76a 100644
--- a/epan/dfilter/dfilter-int.h
+++ b/epan/dfilter/dfilter-int.h
@@ -57,11 +57,7 @@ typedef struct {
} dfwork_t;
/* Constructor/Destructor prototypes for Lemon Parser */
-#if GLIB_CHECK_VERSION(2,16,0)
void *DfilterAlloc(void* (*)(gsize));
-#else
-void *DfilterAlloc(void* (*)(gulong));
-#endif
void DfilterFree(void*, void (*)(void *));
void Dfilter(void*, int, stnode_t*, dfwork_t*);