Fix compiler warning

Fix compiler warning
This commit is contained in:
MassimilianoPinto 2015-03-09 09:21:59 +01:00
parent 8490f52dd0
commit 6a64457255
2 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,7 @@ int config_truth_value(char *str);
static int internalService(char *router);
int config_get_ifaddr(unsigned char *output);
int config_get_release_string(char* release);
FEEDBACK_CONF * config_get_feedback_data();
static char *config_file = NULL;
static GATEWAY_CONF gateway;

View File

@ -56,4 +56,5 @@ typedef struct {
extern char *gw_bin2hex(char *out, const uint8_t *in, unsigned int len);
extern void gw_sha1_str(const uint8_t *in, int in_len, uint8_t *out);
extern FEEDBACK_CONF * config_get_feedback_data();
#endif