1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

r24360: Make ndr_print_debug_helper() output readable.

Guenther
This commit is contained in:
Günther Deschner 2007-08-13 13:05:17 +00:00 committed by Gerald (Jerry) Carter
parent b2ac1a3ec5
commit 45ee3b55d5

View File

@ -199,10 +199,10 @@ void ndr_print_debug_helper(struct ndr_print *ndr, const char *format, ...) _PRI
va_end(ap);
for (i=0;i<ndr->depth;i++) {
DEBUG(0,(" "));
DEBUGADD(0,(" "));
}
DEBUG(0,("%s\n", s));
DEBUGADD(0,("%s\n", s));
free(s);
}