summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-04-29 18:22:04 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-04-29 18:22:04 +0000
commit4aa363eedc0d3631dfc53fe301693a78cff587b3 (patch)
treed7b6bedf5a31a2051ace3a94d63a5ed5144f6385
parent0d3601a7ce264b4b011e8f7149ee06b6f8da7816 (diff)
downloadnetsurf-4aa363eedc0d3631dfc53fe301693a78cff587b3.tar.gz
netsurf-4aa363eedc0d3631dfc53fe301693a78cff587b3.tar.bz2
Change schedule_run to a BOOL as this more standard for platform code.
svn path=/trunk/netsurf/; revision=10516
-rwxr-xr-xamiga/schedule.c2
-rwxr-xr-xamiga/schedule.h4
2 files changed, 2 insertions, 4 deletions
diff --git a/amiga/schedule.c b/amiga/schedule.c
index ecdf0d62a..dc4a0611c 100755
--- a/amiga/schedule.c
+++ b/amiga/schedule.c
@@ -115,7 +115,7 @@ void schedule_remove(void (*callback)(void *p), void *p)
* Process events up to current time.
*/
-bool schedule_run(void)
+BOOL schedule_run(void)
{
struct nsObject *node;
struct nsObject *nnode;
diff --git a/amiga/schedule.h b/amiga/schedule.h
index 7a7985181..df040aaf5 100755
--- a/amiga/schedule.h
+++ b/amiga/schedule.h
@@ -34,7 +34,5 @@ struct nscallback
};
void ami_remove_timer_event(struct nscallback *nscb);
-
-bool schedule_run(void);
-
+BOOL schedule_run(void);
#endif