diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-14 11:43:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:41 -0500 |
commit | 785822590cee196acd40e45fd38b1ffb0606757e (patch) | |
tree | 235abf79a9c9caf046dc6d561bf2126c3db4ff15 /source4 | |
parent | e9c465621eee678feae16f6196031dff8d76fc3d (diff) | |
download | samba-785822590cee196acd40e45fd38b1ffb0606757e.tar.gz samba-785822590cee196acd40e45fd38b1ffb0606757e.tar.bz2 samba-785822590cee196acd40e45fd38b1ffb0606757e.zip |
r18516: I'm surprised that compilers allowed this at all
(This used to be commit 46aa8a5e8914184575fa6b9ec9edced8dd615eab)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/local/irpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/local/irpc.c b/source4/torture/local/irpc.c index 91f1e2fe53..79c91cb3d2 100644 --- a/source4/torture/local/irpc.c +++ b/source4/torture/local/irpc.c @@ -81,12 +81,12 @@ static NTSTATUS irpc_EchoData(struct irpc_message *irpc, struct echo_EchoData *r test a addone call over the internal messaging system */ static BOOL test_addone(struct torture_context *test, const void *_data, - const void *_value) + const void *_value) { struct echo_AddOne r; NTSTATUS status; const struct irpc_test_data *data = _data; - uint32_t value = (uint32_t)value; + uint32_t value = (uint32_t)_value; /* make the call */ r.in.in_data = value; |