diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/events.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/events.h b/src/include/events.h index 94b277692..78b695910 100644 --- a/src/include/events.h +++ b/src/include/events.h @@ -85,11 +85,11 @@ extern "C" { void chEvtSend(EventSource *esp);
void chEvtSendI(EventSource *esp);
t_eventid chEvtWait(t_eventmask ewmask,
- t_evhandler handlers[]);
+ const t_evhandler handlers[]);
#ifdef CH_USE_EVENTS_TIMEOUT
t_eventid chEvtWaitTimeout(t_eventmask ewmask,
- t_evhandler handlers[],
- t_time time);
+ const t_evhandler handlers[],
+ t_time time);
#endif
#ifdef __cplusplus
}
|