diff options
author | Michael Adam <obnox@samba.org> | 2008-07-22 11:54:54 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-07-22 11:54:54 +0200 |
commit | 16a9020029f809707b38d12960db12abbd2ef1be (patch) | |
tree | 9dd1b3304d9a7dcd777a5f297e91f00c6b79f0d5 /source3/librpc/gen_ndr/ndr_notify.c | |
parent | d616e6418db5cad4271bbe5caafdd20581574d49 (diff) | |
download | samba-16a9020029f809707b38d12960db12abbd2ef1be.tar.gz samba-16a9020029f809707b38d12960db12abbd2ef1be.tar.bz2 samba-16a9020029f809707b38d12960db12abbd2ef1be.zip |
re-run make idl after Jelmer's "poperly cast array lengths" pidl change.
(f321240fa91fa19c1131f119c42f64897d220682)
Michael
(This used to be commit 962c2670b10addf81a242d8cb381cc010e036b8e)
Diffstat (limited to 'source3/librpc/gen_ndr/ndr_notify.c')
-rw-r--r-- | source3/librpc/gen_ndr/ndr_notify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/gen_ndr/ndr_notify.c b/source3/librpc/gen_ndr/ndr_notify.c index 195d421408..00ba8bc293 100644 --- a/source3/librpc/gen_ndr/ndr_notify.c +++ b/source3/librpc/gen_ndr/ndr_notify.c @@ -116,7 +116,7 @@ _PUBLIC_ void ndr_print_notify_depth(struct ndr_print *ndr, const char *name, co ndr_print_uint32(ndr, "max_mask", r->max_mask); ndr_print_uint32(ndr, "max_mask_subdir", r->max_mask_subdir); ndr_print_uint32(ndr, "num_entries", r->num_entries); - ndr->print(ndr, "%s: ARRAY(%d)", "entries", r->num_entries); + ndr->print(ndr, "%s: ARRAY(%d)", "entries", (int)r->num_entries); ndr->depth++; for (cntr_entries_0=0;cntr_entries_0<r->num_entries;cntr_entries_0++) { char *idx_0=NULL; @@ -179,7 +179,7 @@ _PUBLIC_ void ndr_print_notify_array(struct ndr_print *ndr, const char *name, co ndr_print_struct(ndr, name, "notify_array"); ndr->depth++; ndr_print_uint32(ndr, "num_depths", r->num_depths); - ndr->print(ndr, "%s: ARRAY(%d)", "depth", r->num_depths); + ndr->print(ndr, "%s: ARRAY(%d)", "depth", (int)r->num_depths); ndr->depth++; for (cntr_depth_0=0;cntr_depth_0<r->num_depths;cntr_depth_0++) { char *idx_0=NULL; |