altos: Add 'void' to function declarations with no params.
[fw/altos] / src / lpc / ao_exti_lpc.c
index fdb6a1caa976bef23789dc7aea69669b3b4be550..12016072f7037e625c5006708fc4c39f507ee88f 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -139,7 +140,7 @@ ao_exti_set_mode(uint8_t port, uint8_t pin, uint8_t mode)
 }
 
 void
-ao_exti_set_callback(uint8_t port, uint8_t pin, void (*callback)()) {
+ao_exti_set_callback(uint8_t port, uint8_t pin, void (*callback)(void)) {
        uint8_t         id = pin_id(port,pin);
        uint8_t         pint = ao_pint_map[id];