diff options
author | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-08-29 06:42:23 +0000 |
---|---|---|
committer | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-08-29 06:42:23 +0000 |
commit | cc948586bf33607f9dad86d66000d9834800cdd2 (patch) | |
tree | ef5ad85f1bfcc0b3babd6b121734b490c86c45f6 /capture-wpcap.c | |
parent | cfcf299dfed664e8ebbde62f2ba09feaedb8825f (diff) | |
download | wireshark-cc948586bf33607f9dad86d66000d9834800cdd2.tar.gz wireshark-cc948586bf33607f9dad86d66000d9834800cdd2.tar.bz2 wireshark-cc948586bf33607f9dad86d66000d9834800cdd2.zip |
Use G_STRINGIFY/G_PASTE
svn path=/trunk/; revision=29614
Diffstat (limited to 'capture-wpcap.c')
-rw-r--r-- | capture-wpcap.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/capture-wpcap.c b/capture-wpcap.c index 3e4198f207..eb7d92382f 100644 --- a/capture-wpcap.c +++ b/capture-wpcap.c @@ -39,9 +39,6 @@ #include "capture-pcap-util.h" #include "capture-pcap-util-int.h" -/* XXX - yes, I know, I should move cppmagic.h to a generic location. */ -#include "tools/lemon/cppmagic.h" - #define MAX_WIN_IF_NAME_LEN 511 @@ -121,7 +118,7 @@ typedef struct { gboolean optional; } symbol_table_t; -#define SYM(x, y) { STRINGIFY(x) , (gpointer) &CONCAT(p_,x), y } +#define SYM(x, y) { G_STRINGIFY(x) , (gpointer) &G_PASTE(p_,x), y } void load_wpcap(void) |