server: fix += -> + typo
authorJens Axboe <axboe@kernel.dk>
Thu, 6 Oct 2011 19:33:29 +0000 (21:33 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 6 Oct 2011 19:33:29 +0000 (21:33 +0200)
We don't want to free inside the range...

Signed-off-by: Jens Axboe <axboe@kernel.dk>
server.c

index c1a2824c12ad5675eda66a457de22811d85095ad..553eb82c3ce1d08c70aad36a1a886dfb5a1f5be8 100644 (file)
--- a/server.c
+++ b/server.c
@@ -750,7 +750,7 @@ static int fio_handle_server_arg(void)
        if (!fio_server_arg)
                return 0;
        if (!strncmp(fio_server_arg, "sock:", 5)) {
-               bind_sock = fio_server_arg += 5;
+               bind_sock = fio_server_arg + 5;
                return 0;
        } else {
                char *host = fio_server_arg;