[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
This patch fixes a very small typo in the QNX version of Allegro. There
is a leftover ';' at the end of a function.
There are other errors compiling Allegro on QNX, and I will get to them
shortly.
--- qsystem.c.old 2004-09-04 17:41:06.000000000 -0400
+++ qsystem.c 2004-09-04 17:41:13.000000000 -0400
@@ -460,7 +460,7 @@
/* qnx_sys_set_close_button_callback:
* Sets the close button callback function.
*/
-static int qnx_sys_set_close_button_callback(void (*proc)(void));
+static int qnx_sys_set_close_button_callback(void (*proc)(void))
{
window_close_hook = proc;