From 616a64dd395d4a1062317e7ac9e8b812c32b0315 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 31 Oct 2007 16:25:44 +0100 Subject: r25765: pidl: fix compiler warning in ndr_align test metze (This used to be commit 3accc840bee973f56ab34a35e3c181da8cb1023e) --- source4/pidl/tests/ndr_align.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/pidl') diff --git a/source4/pidl/tests/ndr_align.pl b/source4/pidl/tests/ndr_align.pl index 0824acc501..26336b7772 100755 --- a/source4/pidl/tests/ndr_align.pl +++ b/source4/pidl/tests/ndr_align.pl @@ -70,11 +70,11 @@ test_samba4_ndr('align-uint8-hyper', struct ndr_push *ndr = ndr_push_init_ctx(NULL); struct bla r; uint8_t expected[] = { 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xef, 0xbe, 0xef, 0xbe, 0xef, 0xbe, 0xef, 0xbe }; + 0xef, 0xbe, 0xef, 0xbe, 0xef, 0xbe, 0xef, 0xbe }; DATA_BLOB expected_blob = { expected, 16 }; DATA_BLOB result_blob; r.x = 13; - r.y = 0xbeefbeefbeefbeef; + r.y = 0xbeefbeefbeefbeefLLU; if (NT_STATUS_IS_ERR(ndr_push_bla(ndr, NDR_SCALARS|NDR_BUFFERS, &r))) return 1; -- cgit