aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Campus <fci1908@gmail.com>2016-10-20 17:08:04 +0200
committerGitHub <noreply@github.com>2016-10-20 17:08:04 +0200
commitb60e82c7022db45246b5914c3b28bcc9c1194ca8 (patch)
tree29f4ed36c16cced769dcc20ee1661059c4e7e477
parent94c134318bc2e2b36f44cdb9e20efedf9ad99060 (diff)
parentbac82eeb8e3ebc343245020436b1326ad7516a25 (diff)
Merge pull request #278 from mgigante/dev_funcproto
Avoid c99 complains about function prototypes
-rw-r--r--src/include/ndpi_api.h4
-rw-r--r--src/lib/ndpi_main.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h
index 2cea8386b..ce84453c9 100644
--- a/src/include/ndpi_api.h
+++ b/src/include/ndpi_api.h
@@ -122,7 +122,7 @@ extern "C" {
* @return the initialized detection module
*
*/
- struct ndpi_detection_module_struct *ndpi_init_detection_module();
+ struct ndpi_detection_module_struct *ndpi_init_detection_module(void);
/**
* Frees the memory allocated in the specified flow
@@ -588,7 +588,7 @@ ndpi_protocol ndpi_l4_detection_process_packet(struct ndpi_detection_module_stru
* @return The requested automata, or NULL if an error occurred
*
*/
- void* ndpi_init_automa();
+ void* ndpi_init_automa(void);
/**
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index 774397013..946cb5c10 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -1716,7 +1716,7 @@ void set_ndpi_debug_function(struct ndpi_detection_module_struct *ndpi_str, ndpi
/* ******************************************************************** */
-struct ndpi_detection_module_struct *ndpi_init_detection_module() {
+struct ndpi_detection_module_struct *ndpi_init_detection_module(void) {
struct ndpi_detection_module_struct *ndpi_str = ndpi_malloc(sizeof(struct ndpi_detection_module_struct));
if(ndpi_str == NULL) {
@@ -1771,7 +1771,7 @@ struct ndpi_detection_module_struct *ndpi_init_detection_module() {
/* *********************************************** */
/* Wrappers */
-void* ndpi_init_automa() {
+void* ndpi_init_automa(void) {
return(ac_automata_init(ac_match_handler));
}