summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-09-06 20:53:39 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-09-06 20:53:39 +0000
commitfb1850b755708e98f63583cc1571036b2fc6bbb8 (patch)
tree94cf2e5e2bdb368feb262d7a29532c66485daf49 /firmware
parent8fd5b177ede6e3fb76e1e5695729a10732d46fd9 (diff)
downloadrockbox-fb1850b755708e98f63583cc1571036b2fc6bbb8.tar.gz
rockbox-fb1850b755708e98f63583cc1571036b2fc6bbb8.zip
Moved the system_reboot() call to the correct place
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7483 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/system.c b/firmware/system.c
index e6ea543069..20dc7c5241 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -897,8 +897,8 @@ void UIE (unsigned int pc) /* Unexpected Interrupt or Exception */
897#else 897#else
898 if (!(PBDR & 0x0100)) 898 if (!(PBDR & 0x0100))
899#endif 899#endif
900 system_reboot();
901#endif 900#endif
901 system_reboot();
902 } 902 }
903} 903}
904 904