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:
parent
207253b401
commit
1227dabec4
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
|
@ -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. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue