diff options
author | Anders Broman <anders.broman@ericsson.com> | 2013-11-18 06:22:09 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2013-11-18 06:22:09 +0000 |
commit | 202a03b398553af1da4269ed147f741bca54a325 (patch) | |
tree | 7a8c79080a4b09f2dee4df00248cac785095e59c /plugins/docsis/packet-dscreq.c | |
parent | 67d4aaaa10bac6dc1fd6f239ec1157cea96bc5c1 (diff) | |
download | wireshark-202a03b398553af1da4269ed147f741bca54a325.tar.gz wireshark-202a03b398553af1da4269ed147f741bca54a325.tar.bz2 wireshark-202a03b398553af1da4269ed147f741bca54a325.zip |
Fix [-Wmissing-prototypes]
svn path=/trunk/; revision=53404
Diffstat (limited to 'plugins/docsis/packet-dscreq.c')
-rw-r--r-- | plugins/docsis/packet-dscreq.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/docsis/packet-dscreq.c b/plugins/docsis/packet-dscreq.c index fefa3ea9a4..1b24a461f6 100644 --- a/plugins/docsis/packet-dscreq.c +++ b/plugins/docsis/packet-dscreq.c @@ -27,6 +27,9 @@ #include <epan/packet.h> +void proto_register_docsis_dscreq(void); +void proto_reg_handoff_docsis_dscreq(void); + /* Initialize the protocol and registered fields */ static int proto_docsis_dscreq = -1; static int hf_docsis_dscreq_tranid = -1; |