From 2bf8332a4c2b80409785a3e28ad14ced1a258cb2 Mon Sep 17 00:00:00 2001 From: Wouter Verhelst Date: Sun, 25 Jul 2010 02:00:23 +0200 Subject: [PATCH] Make -Wall clean --- nbd-client.c | 2 +- nbd-server.c | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/nbd-client.c b/nbd-client.c index 1fbd4c4..0e1da2b 100644 --- a/nbd-client.c +++ b/nbd-client.c @@ -271,7 +271,7 @@ int main(int argc, char *argv[]) { int nofork=0; u64 size64; u32 flags; - int i, c; + int c; int nonspecial=0; struct option long_options[] = { { "block-size", required_argument, NULL, 'b' }, diff --git a/nbd-server.c b/nbd-server.c index 16d70f7..70db6d1 100644 --- a/nbd-server.c +++ b/nbd-server.c @@ -911,7 +911,7 @@ off_t size_autodetect(int fhandle) { #ifdef HAVE_SYS_IOCTL_H #ifdef BLKGETSIZE64 DEBUG("looking for export size with ioctl BLKGETSIZE64\n"); - if (!ioctl(fhandle, BLKGETSIZE64, bytes) && bytes) { + if (!ioctl(fhandle, BLKGETSIZE64, &bytes) && bytes) { return (off_t)bytes; } #endif /* BLKGETSIZE64 */ @@ -1663,11 +1663,9 @@ int serveloop(GArray* servers) { * @param serve the server we want to connect. **/ void setup_serve(SERVER *serve) { - struct sockaddr_storage addrin; struct addrinfo hints; struct addrinfo *ai = NULL; struct sigaction sa; - int addrinlen = sizeof(addrin); int sock_flags; #ifndef sun int yes=1; -- 1.7.10.4