From 2382044ffca161910eb9e4bddf01a4bb2bc7481f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= Date: Mon, 13 May 2002 12:29:34 +0000 Subject: Changing to C99 'bool' type git-svn-id: svn://svn.rockbox.org/rockbox/trunk@561 a1c6a512-1295-4272-9138-f99709370657 --- firmware/system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware/system.c') diff --git a/firmware/system.c b/firmware/system.c index b176da4..cc039b3 100644 --- a/firmware/system.c +++ b/firmware/system.c @@ -318,10 +318,10 @@ void UIE (unsigned int pc) /* Unexpected Interrupt or Exception */ while (1) { - bool state = TRUE; + bool state = true; led (state); - state = state?FALSE:TRUE; + state = state?false:true; for (i = 0; i < 240000; ++i); } -- cgit v1.1