summaryrefslogtreecommitdiff
path: root/apps/action.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2012-03-03 07:52:13 -0500
committerMichael Sevakis <jethead71@rockbox.org>2012-03-03 07:52:13 -0500
commitd05db0a90c7bce7e6830e77a16c63a90e9e572c4 (patch)
tree3af3b1406b2bc6a30f647abcc40865bee2f73022 /apps/action.c
parentf688710707f3af56a5949b8ae3957c9408b25392 (diff)
downloadrockbox-d05db0a90c7bce7e6830e77a16c63a90e9e572c4.tar.gz
rockbox-d05db0a90c7bce7e6830e77a16c63a90e9e572c4.zip
Correct actionable offense for misappropriation of action context.
Just use a bool to indicate raw button instead of action code. No bother with plugin version yet again so soon. Change-Id: I4aa075c0c1fb5308c9d49bebb30ac76f671b2335
Diffstat (limited to 'apps/action.c')
-rw-r--r--apps/action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c
index 69089d1d8c..ee6cbaa4cf 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -368,7 +368,7 @@ static int get_action_worker(int context, int timeout,
368 368
369#if CONFIG_CODEC == SWCODEC 369#if CONFIG_CODEC == SWCODEC
370 /* Produce keyclick */ 370 /* Produce keyclick */
371 keyclick_click(0, ret); 371 keyclick_click(false, ret);
372#endif 372#endif
373 373
374 return ret; 374 return ret;