summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-04-11 01:50:12 +0000
committerTim Potter <tpot@samba.org>2001-04-11 01:50:12 +0000
commitcda0f211b0dd41ae72ef3d65b9476c11c6f72de3 (patch)
tree0df4e0535119022a8f40c662833536fd59969130
parent493d2c316a9e80de0239ef3a6f0b3f4ec9ac6e13 (diff)
downloadsamba-cda0f211b0dd41ae72ef3d65b9476c11c6f72de3.tar.gz
samba-cda0f211b0dd41ae72ef3d65b9476c11c6f72de3.tar.xz
samba-cda0f211b0dd41ae72ef3d65b9476c11c6f72de3.zip
Fixed some compiler warnings.
-rw-r--r--source/tdb/tdbutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/tdb/tdbutil.c b/source/tdb/tdbutil.c
index 4df7f9004eb..27aac560e0a 100644
--- a/source/tdb/tdbutil.c
+++ b/source/tdb/tdbutil.c
@@ -135,7 +135,7 @@ va_dcl
uint32 d;
int i;
void *p;
- int len;
+ int len = 0;
char *s;
char c;
#ifdef HAVE_STDARG_H
@@ -243,7 +243,7 @@ va_dcl
va_list ap;
uint16 *w;
uint32 *d;
- int len;
+ int len = 0;
int *i;
void **p;
char *s, **b;