Make pointers static.

This commit is contained in:
Dave Davenport 2015-03-12 08:39:50 +01:00
parent 4fad02225e
commit 42b86015c3
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@
#include "helper.h"
#include "rofi.h"
int stored_argc = 0;
char **stored_argv = NULL;
static int stored_argc = 0;
static char **stored_argv = NULL;
void cmd_set_arguments ( int argc, char **argv )
{