diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-11-02 10:35:09 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:44:02 +0100 |
commit | bd05c0c3fae3a86cb0f8fa33044a8fdb4f5bd992 (patch) | |
tree | 52ac7782e6b04ee529c5f0fd57a94fc00a7ae9ea /source4 | |
parent | fb4032a470e3b058cd91da86006f69a5cd2bd8ff (diff) | |
download | samba-bd05c0c3fae3a86cb0f8fa33044a8fdb4f5bd992.tar.gz samba-bd05c0c3fae3a86cb0f8fa33044a8fdb4f5bd992.tar.bz2 samba-bd05c0c3fae3a86cb0f8fa33044a8fdb4f5bd992.zip |
r25795: whitespace cleanup...
metze
(This used to be commit cae48a19530909981a852801095a19a662f65cfe)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/pidl/tests/ndr_simple.pl | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/source4/pidl/tests/ndr_simple.pl b/source4/pidl/tests/ndr_simple.pl index b5e4a7592a..466a164df4 100755 --- a/source4/pidl/tests/ndr_simple.pl +++ b/source4/pidl/tests/ndr_simple.pl @@ -9,20 +9,20 @@ use FindBin qw($RealBin); use lib "$RealBin"; use Util qw(test_samba4_ndr); -test_samba4_ndr("simple", "void Test(); ", +test_samba4_ndr("simple", "void Test(); ", " - uint8_t data[] = { 0x02 }; - uint8_t result; - DATA_BLOB b; - struct ndr_pull *ndr; - - b.data = data; - b.length = 1; - ndr = ndr_pull_init_blob(&b, mem_ctx); - - if (!NT_STATUS_IS_OK(ndr_pull_uint8(ndr, NDR_SCALARS, &result))) - return 1; - - if (result != 0x02) - return 2; + uint8_t data[] = { 0x02 }; + uint8_t result; + DATA_BLOB b; + struct ndr_pull *ndr; + + b.data = data; + b.length = 1; + ndr = ndr_pull_init_blob(&b, mem_ctx); + + if (!NT_STATUS_IS_OK(ndr_pull_uint8(ndr, NDR_SCALARS, &result))) + return 1; + + if (result != 0x02) + return 2; "); |