diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-13 12:29:34 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-13 12:29:34 +0000 |
| commit | 2382044ffca161910eb9e4bddf01a4bb2bc7481f (patch) | |
| tree | b1e3f9e08b47e60ad3f1ea3658794eb4f78cc4d1 /firmware/system.c | |
| parent | 0631a1dcce95d2cde96dd205f85b7d849215aaa5 (diff) | |
| download | rockbox-2382044ffca161910eb9e4bddf01a4bb2bc7481f.zip rockbox-2382044ffca161910eb9e4bddf01a4bb2bc7481f.tar.gz rockbox-2382044ffca161910eb9e4bddf01a4bb2bc7481f.tar.bz2 rockbox-2382044ffca161910eb9e4bddf01a4bb2bc7481f.tar.xz | |
Changing to C99 'bool' type
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@561 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/system.c')
| -rw-r--r-- | firmware/system.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |