diff --git a/ChangeLog b/ChangeLog index 86c377fe..04a0cf66 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1693,3 +1693,10 @@ Thu Feb 17 11:02:30 PST 2000 (Mandrake) patch from Bob Arendt to fix a problem in eesh with tru64 + +------------------------------------------------------------------------------- + +Thu Feb 17 11:11:46 PST 2000 +(Mandrake) + +removed some warnings, still a few left in dox/file.c diff --git a/dox/format.c b/dox/format.c index 77934671..70c90329 100644 --- a/dox/format.c +++ b/dox/format.c @@ -668,7 +668,7 @@ RenderPage(Window win, int page_num, int w, int h) int sx, sy, ssx, ssy; char link_txt[1024]; char link_link[1024]; - int spaceflag, oldwc; + int spaceflag, oldwc=0; wd[0] = 0; if ( MB_CUR_MAX > 1 ) /* If multibyte locale,... */ diff --git a/eesh/main.c b/eesh/main.c index 7f5b23c7..4e3068dd 100644 --- a/eesh/main.c +++ b/eesh/main.c @@ -32,6 +32,7 @@ extern char waitonly; static int stdin_state; +void restore_stdin_state(void); void restore_stdin_state(void) { fcntl(0, F_SETFL, stdin_state); } diff --git a/src/text.c b/src/text.c index 2aba0b97..d5b232fc 100644 --- a/src/text.c +++ b/src/text.c @@ -460,7 +460,7 @@ TextDraw(TextClass * tclass, Window win, int active, int sticky, int state, char *new_line; int nuke_count = 0; int len; - wchar_t *wc_line; + wchar_t *wc_line = NULL; int wc_len; len = strlen(lines[i]);