Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions xclip.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ static int fsecm = F; /* zero out selection buffer before exiting */
Display *dpy; /* connection to X11 display */
XrmDatabase opt_db = NULL; /* database for options */

char **fil_names; /* names of files to read */
int fil_number = 0; /* number of files to read */
int fil_current = 0;
FILE *fil_handle = NULL;
static char **fil_names; /* names of files to read */
static int fil_number = 0; /* number of files to read */
static int fil_current = 0;
static FILE *fil_handle = NULL;

/* variables to hold Xrm database record and type */
XrmValue rec_val;
Expand Down