diff options
Diffstat (limited to 'apps/action.c')
-rw-r--r-- | apps/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c index 20145a5bc1..208fea4a97 100644 --- a/apps/action.c +++ b/apps/action.c @@ -1202,7 +1202,7 @@ int action_set_keymap(struct button_mapping* core_keymap, int count) return action_set_keymap_handle(0, 0); size_t keyremap_buf_size = count * sizeof(struct button_mapping); - int handle = core_alloc("keyremap", keyremap_buf_size); + int handle = core_alloc(keyremap_buf_size); if (handle < 0) return -6; |