examples/er-rest-example/resources/res-event.c: fix warning: function declaration isn't a prototype

This commit is contained in:
Joakim Nohlgård 2016-03-02 07:25:19 +01:00
parent 4ff571beb2
commit 1219790312
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@
#endif #endif
static void res_get_handler(void *request, void *response, uint8_t *buffer, uint16_t preferred_size, int32_t *offset); static void res_get_handler(void *request, void *response, uint8_t *buffer, uint16_t preferred_size, int32_t *offset);
static void res_event_handler(); static void res_event_handler(void);
/* /*
* Example for an event resource. * Example for an event resource.
@ -86,7 +86,7 @@ res_get_handler(void *request, void *response, uint8_t *buffer, uint16_t preferr
* It is called through <res_name>.trigger(), usually from the server process. * It is called through <res_name>.trigger(), usually from the server process.
*/ */
static void static void
res_event_handler() res_event_handler(void)
{ {
/* Do the update triggered by the event here, e.g., sampling a sensor. */ /* Do the update triggered by the event here, e.g., sampling a sensor. */
++event_counter; ++event_counter;