summaryrefslogtreecommitdiff
path: root/amiga/schedule.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-29 19:56:54 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-29 19:56:54 +0000
commit70e777c30d7eeeb28591ca7769100059808aada8 (patch)
tree0174dd2142fd091858129229492e470cb7daf0b0 /amiga/schedule.c
parent6b2676d33f2e6c25dc98eda57325e7185a6ff763 (diff)
downloadnetsurf-70e777c30d7eeeb28591ca7769100059808aada8.tar.gz
netsurf-70e777c30d7eeeb28591ca7769100059808aada8.tar.bz2
Add some comments about timer.device.
Diffstat (limited to 'amiga/schedule.c')
-rwxr-xr-xamiga/schedule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/schedule.c b/amiga/schedule.c
index b5a115d09..cab2beecd 100755
--- a/amiga/schedule.c
+++ b/amiga/schedule.c
@@ -282,7 +282,7 @@ static void ami_scheduler_run(struct MsgPort *nsmsgport)
static struct MsgPort *ami_schedule_open_timer(void)
{
struct MsgPort *msgport = AllocSysObjectTags(ASOT_PORT,
- ASO_NoTrack,FALSE,
+ ASO_NoTrack, FALSE,
TAG_DONE);
tioreq = (struct TimeRequest *)AllocSysObjectTags(ASOT_IOREQUEST,
@@ -294,7 +294,7 @@ static struct MsgPort *ami_schedule_open_timer(void)
OpenDevice("timer.device", UNIT_WAITUNTIL, (struct IORequest *)tioreq, 0);
TimerBase = (struct Device *)tioreq->Request.io_Device;
- ITimer = (struct TimerIFace *)GetInterface((struct Library *)TimerBase,"main",1,NULL);
+ ITimer = (struct TimerIFace *)GetInterface((struct Library *)TimerBase, "main", 1, NULL);
return msgport;
}