summaryrefslogtreecommitdiff
path: root/source4/pidl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-31 16:25:44 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:43:49 +0100
commit616a64dd395d4a1062317e7ac9e8b812c32b0315 (patch)
treee205b32129cb156a42763e68ab8c78756654cac3 /source4/pidl
parent7267b3505889e00e0f13cd1b7fa9c5bb8dedb4e4 (diff)
downloadsamba-616a64dd395d4a1062317e7ac9e8b812c32b0315.tar.gz
samba-616a64dd395d4a1062317e7ac9e8b812c32b0315.tar.bz2
samba-616a64dd395d4a1062317e7ac9e8b812c32b0315.zip
r25765: pidl: fix compiler warning in ndr_align test
metze (This used to be commit 3accc840bee973f56ab34a35e3c181da8cb1023e)
Diffstat (limited to 'source4/pidl')
-rwxr-xr-xsource4/pidl/tests/ndr_align.pl4
1 files changed, 2 insertions, 2 deletions
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;