1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

Fix an uninitialized variable warning

(This used to be commit b3d024676426000380ad86a2a4b83e7b21478978)
This commit is contained in:
Volker Lendecke 2008-05-15 18:09:56 +02:00
parent ef6fd2d46d
commit a620882e15

View File

@ -44,7 +44,7 @@ static void ldb_wrap_debug(void *context, enum ldb_debug_level level,
static void ldb_wrap_debug(void *context, enum ldb_debug_level level,
const char *fmt, va_list ap)
{
int samba_level;
int samba_level = -1;
char *s = NULL;
switch (level) {
case LDB_DEBUG_FATAL: