diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-02-07 00:16:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:44:44 -0500 |
commit | 6d7039026c9b6f077f3d2453fb9381be32f332f8 (patch) | |
tree | 50ee6dd05591a9de34c966cb8e10a205bea0cfc4 /source4/torture | |
parent | d3eef7270d033fa0e37c07291065389bc746881f (diff) | |
download | samba-6d7039026c9b6f077f3d2453fb9381be32f332f8.tar.gz samba-6d7039026c9b6f077f3d2453fb9381be32f332f8.tar.bz2 samba-6d7039026c9b6f077f3d2453fb9381be32f332f8.zip |
r21205: Fix warning.
Trivial patch from "Lunar Child <luch@etersoft.ru>"
(This used to be commit 1b75a9ff2d7f91f13fbdfd136b40eca14867bf6f)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/rpc.c b/source4/torture/rpc/rpc.c index fb304ce20a..1bb2047340 100644 --- a/source4/torture/rpc/rpc.c +++ b/source4/torture/rpc/rpc.c @@ -117,7 +117,7 @@ _PUBLIC_ struct torture_tcase *torture_suite_add_rpc_iface_tcase(struct torture_ tcase->setup = torture_rpc_setup; tcase->teardown = torture_rpc_teardown; - tcase->data = table; + tcase->data = (void *)&table; return tcase; } |