From b933c0c855f35c5594bee56a923bee4cc2e82127 Mon Sep 17 00:00:00 2001 From: Scoopta Date: Tue, 23 Jun 2020 00:35:40 -0700 Subject: [PATCH] Removed glib.h include from run --- modes/run.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modes/run.c b/modes/run.c index e3acea2..0f659b6 100644 --- a/modes/run.c +++ b/modes/run.c @@ -28,8 +28,6 @@ #include #include -#include - static const char* arg_names[] = {"always_parse_args", "show_all"}; static bool always_parse_args; @@ -153,7 +151,7 @@ struct widget* wofi_run_get_widget(void) { } -void wofi_run_exec(const gchar* cmd) { +void wofi_run_exec(const char* cmd) { bool arg_run = wofi_mod_control() || always_parse_args; if(strncmp(cmd, arg_str, strlen(arg_str)) == 0) { arg_run = true;