Minor dbg output formatting fix.

remotes/origin/master-1.0.x
Victor Julien 16 years ago
parent 15bfa7aa4e
commit 8f0fe76346

@ -16,7 +16,7 @@ void TmModuleDebugList(void) {
if (t->name == NULL) if (t->name == NULL)
continue; continue;
SCLogDebug("%s:%p\n", t->name, t->Func); SCLogDebug("%s:%p", t->name, t->Func);
} }
} }
@ -54,7 +54,8 @@ LogFileCtx *LogFileNewCtx()
return NULL; return NULL;
} }
memset(lf_ctx, 0, sizeof(LogFileCtx)); memset(lf_ctx, 0, sizeof(LogFileCtx));
/** Ensure that it is unlocked */
/* Ensure that it is unlocked */
SCMutexInit(&lf_ctx->fp_mutex,NULL); SCMutexInit(&lf_ctx->fp_mutex,NULL);
SCMutexUnlock(&lf_ctx->fp_mutex); SCMutexUnlock(&lf_ctx->fp_mutex);

Loading…
Cancel
Save