diff options
Diffstat (limited to 'testing/examples/ledtest-imx31pdk')
-rw-r--r-- | testing/examples/ledtest-imx31pdk/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/examples/ledtest-imx31pdk/test.c b/testing/examples/ledtest-imx31pdk/test.c index 446bc909..9f3855df 100644 --- a/testing/examples/ledtest-imx31pdk/test.c +++ b/testing/examples/ledtest-imx31pdk/test.c @@ -29,7 +29,7 @@ int main (void) { volatile unsigned char *led = ((volatile unsigned char *)0xB6020000); - while(1) + while (1) { *led = 0xFF; delay(); @@ -46,13 +46,13 @@ __gccmain() void exit(int exit_code) { - while(1); + while (1); } /* EXIT */ atexit() { - while(1); + while (1); } /* ATEXIT */ |