summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2010-04-10 20:31:01 +0000
committerAlexander Levin <al.le@rockbox.org>2010-04-10 20:31:01 +0000
commit4779456c3fecbf83b2aa591bb6b05821b7ec1148 (patch)
treeba5f044d8bae12e3e4849812a8ac258deda297cd
parentf23251999c6a622af99f60e51ba867d54076f186 (diff)
downloadrockbox-4779456c3fecbf83b2aa591bb6b05821b7ec1148.tar.gz
rockbox-4779456c3fecbf83b2aa591bb6b05821b7ec1148.zip
Fix typos in comments
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25574 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/onplay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 0959cdf514..27a3196e16 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -1215,11 +1215,11 @@ enum hotkey_action {
};
struct hotkey_assignment {
- int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */
- struct menu_func func; /* Function to run if this entry is selcted */
- int return_code; /* What to return afer the function is run */
+ int item; /* Bit or'd hotkey_action and HOTKEY_CTX_x */
+ struct menu_func func; /* Function to run if this entry is selected */
+ int return_code; /* What to return after the function is run */
const struct menu_item_ex *menu_addr;
- int lang_id; /* How to present the item to the user */
+ int lang_id; /* How to present the item to the user */
};
#define HOTKEY_FUNC(func, param) {{(void *)func}, param}