Skip to content

Commit 55bdddc

Browse files
committed
fix warnings
1 parent 0ef12e2 commit 55bdddc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

siod/editline.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
/* modified by awb to allow specifcation of history size at run time */
7474
/* (though only once) */
7575
int editline_histsize=256;
76-
char *editline_history_file;
76+
char *editline_history_file = ".editline_history";
7777
/* If this is defined it'll be called for completion first, before the */
7878
/* internal file name completion will be */
7979
EL_USER_COMPLETION_FUNCTION_TYPE*el_user_completion_function = NULL;

siod/siodeditline.c

-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ static char **command_completion (char *text,int start,int end);
100100

101101
static char *el_line = NULL;
102102

103-
char *editline_history_file = ".editline_history";
104103
static char *full_history_file = ".editline_history";
105104

106105
static STATUS siod_display_doc ()

0 commit comments

Comments
 (0)