diff options
author | Volker Lendecke <vl@samba.org> | 2009-05-03 22:46:05 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-05-03 22:48:31 +0200 |
commit | 2fe79f75847d43a626f64229366a44373a11e7b3 (patch) | |
tree | 655c154019106a7ce1a7aa2c130ff32b1a2d26bd | |
parent | 4949a2cfaa13fc0311a209c5e72eee0378e8b35a (diff) | |
download | samba-2fe79f75847d43a626f64229366a44373a11e7b3.tar.gz samba-2fe79f75847d43a626f64229366a44373a11e7b3.tar.bz2 samba-2fe79f75847d43a626f64229366a44373a11e7b3.zip |
Fix an invalid type warning
-rw-r--r-- | source3/torture/torture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index be2a854aaf..c9199eb36f 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -5671,7 +5671,7 @@ static bool run_getaddrinfo_send(int dummy) goto fail; } tevent_req_set_callback(reqs[i], getaddrinfo_finished, - names[i]); + (void *)names[i]); } for (i=0; i<ARRAY_SIZE(reqs); i++) { |