From 42c810cea660f59cae8c30b12a5419450e923a2b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 15 Oct 2004 07:38:46 +0000 Subject: r2989: fix the printing of unions with negative cases when :print is used (This used to be commit d8152f896119418d95d7697cc2ca23f5319c32a9) --- source4/librpc/ndr/ndr_basic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/librpc/ndr/ndr_basic.c') diff --git a/source4/librpc/ndr/ndr_basic.c b/source4/librpc/ndr/ndr_basic.c index 61ad722cb1..edb1590489 100644 --- a/source4/librpc/ndr/ndr_basic.c +++ b/source4/librpc/ndr/ndr_basic.c @@ -928,9 +928,9 @@ void ndr_print_time_t(struct ndr_print *ndr, const char *name, time_t t) } } -void ndr_print_union(struct ndr_print *ndr, const char *name, uint16_t level, const char *type) +void ndr_print_union(struct ndr_print *ndr, const char *name, int level, const char *type) { - ndr->print(ndr, "%-25s: union %s(case %u)", name, type, level); + ndr->print(ndr, "%-25s: union %s(case %d)", name, type, level); } void ndr_print_bad_level(struct ndr_print *ndr, const char *name, uint16_t level) -- cgit