diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2008-10-31 18:44:46 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2008-10-31 18:44:46 +0000 |
commit | 6f1b59c130492e3d73259f776a54398390614bbd (patch) | |
tree | 157ff900335c4bbcda22711d7a1873f20a10baa3 /epan/packet.h | |
parent | 76ba68775b31682d663b19256fab4156515e3eec (diff) | |
download | wireshark-6f1b59c130492e3d73259f776a54398390614bbd.tar.gz wireshark-6f1b59c130492e3d73259f776a54398390614bbd.tar.bz2 wireshark-6f1b59c130492e3d73259f776a54398390614bbd.zip |
Fix a prototype to avoid a warning.
svn path=/trunk/; revision=26659
Diffstat (limited to 'epan/packet.h')
-rw-r--r-- | epan/packet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet.h b/epan/packet.h index 6d4896fe6b..cbcddc83c8 100644 --- a/epan/packet.h +++ b/epan/packet.h @@ -407,7 +407,7 @@ extern void dissector_dump_decodes(void); * dissector has been called. */ extern void register_postdissector(dissector_handle_t); -extern gboolean have_postdissector(); +extern gboolean have_postdissector(void); extern void call_all_postdissectors(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree); #ifdef __cplusplus |