From 508a6ea627191f17a98c702209fb033f039ac384 Mon Sep 17 00:00:00 2001
From: natinusala <natinusala@gmail.com>
Date: Tue, 19 May 2015 21:07:06 +0200
Subject: [PATCH] Added (void* data) to perform_action in menu_ctx_driver

---
 menu/menu_driver.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/menu/menu_driver.h b/menu/menu_driver.h
index c3e11f4d7a..47b29741f6 100644
--- a/menu/menu_driver.h
+++ b/menu/menu_driver.h
@@ -254,7 +254,7 @@ typedef struct menu_ctx_driver
    void  (*list_set_selection)(file_list_t *list);
    bool  (*load_background)(void *data);
    const char *ident;
-   bool  (*perform_action)(unsigned action);
+   bool  (*perform_action)(void* data, unsigned action);
 } menu_ctx_driver_t;
 
 extern menu_ctx_driver_t menu_ctx_rmenu;