Warning fix:

plugins.c:236: warning: implicit declaration of function
        'report_failure'


svn path=/trunk/; revision=13625
This commit is contained in:
Jörg Mayer 2005-03-06 09:40:58 +00:00
parent 9432483a14
commit 8b13213e85
2 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,8 @@ void epan_init(const char * plugindir, void (*register_all_protocols)(void),
void epan_cleanup(void);
void epan_conversation_init(void);
void epan_circuit_init(void);
void report_failure(const char *, ...);
/* A client will create one epan_t for an entire dissection session.
* A single epan_t will be used to analyze the entire sequence of packets,

View File

@ -30,6 +30,7 @@
# include "snprintf.h"
#endif
#include "epan.h"
#include "plugins.h"
#ifdef HAVE_PLUGINS