1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r19866: Fix test compilation.

This commit is contained in:
Jelmer Vernooij 2006-11-23 18:26:55 +00:00 committed by Gerald (Jerry) Carter
parent db237ad52f
commit 2a3196db9d

View File

@ -17,11 +17,11 @@ test_samba4_ndr("fullptr-push-dup",
'
struct ndr_push *ndr = ndr_push_init();
uint32_t v = 13;
struct echo_TestRef r;
struct echo_TestFull r;
r.in.x = &v;
r.in.y = &v;
if (NT_STATUS_IS_ERR(ndr_push_echo_TestRef(ndr, NDR_IN, &r))) {
if (NT_STATUS_IS_ERR(ndr_push_echo_TestFull(ndr, NDR_IN, &r))) {
fprintf(stderr, "push failed\n");
return 1;
}