1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

dtdocbook: Resolve uninitialized warnings

This commit is contained in:
Peter Howkins 2021-12-22 01:25:06 +00:00 committed by Jon Trulson
parent 207253b401
commit 1227dabec4
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ static char *br_help_msg[] = {
void void
Browse(void) Browse(void)
{ {
char buf[256], *cmd, **av, **sv, *cmapfile, *sdatafile; char buf[256], *cmd = NULL, **av, **sv, *cmapfile, *sdatafile;
char *Prompt; char *Prompt;
Element_t *ce; /* current element */ Element_t *ce; /* current element */
Element_t *e; Element_t *e;

View file

@ -306,7 +306,7 @@ int *flagp
char *ret; char *ret;
char *br; char *br;
char *ender; char *ender;
int parno; int parno = 0;
int flags; int flags;
*flagp = HASWIDTH; /* Tentatively. */ *flagp = HASWIDTH; /* Tentatively. */