diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2013-05-11 21:20:49 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2013-05-11 21:20:49 -0400 |
commit | af4c55bd1126a81c3d673f547b90e3602342870f (patch) | |
tree | c163af5e8ea0fb396435384d8af952835e28541b | |
parent | 0a7d941fb9e8dba5934255e37ceaa9063b38ed25 (diff) |
Set the right variable type for ucallback :)
Change-Id: I19eace9452d9d0b2a6c7770549930c83ece05c80
-rw-r--r-- | firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c b/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c index 545905d4c2..d7ebeea024 100644 --- a/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c +++ b/firmware/target/arm/imx31/gigabeat-s/system-gigabeat-s.c @@ -87,7 +87,7 @@ void watchdog_service(void) /** uevent APIs **/ -static void (*ucallback)(void) = NULL; /* uevent callback */ +static uevent_cb_type ucallback = NULL; /* uevent callback */ static void cancel_uevent(void) { |