Author: metze
Date: 2007-10-31 16:25:44 +0000 (Wed, 31 Oct 2007)
New Revision: 25765

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25765

Log:
pidl: fix compiler warning in ndr_align test

metze
Modified:
   branches/SAMBA_4_0/source/pidl/tests/ndr_align.pl


Changeset:
Modified: branches/SAMBA_4_0/source/pidl/tests/ndr_align.pl
===================================================================
--- branches/SAMBA_4_0/source/pidl/tests/ndr_align.pl   2007-10-31 14:48:48 UTC 
(rev 25764)
+++ branches/SAMBA_4_0/source/pidl/tests/ndr_align.pl   2007-10-31 16:25:44 UTC 
(rev 25765)
@@ -70,11 +70,11 @@
        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;

Reply via email to