From: Jens Axboe Date: Thu, 3 Feb 2022 22:28:16 +0000 (-0700) Subject: server: fix formatting issue X-Git-Tag: fio-3.30~77 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=8a596ff1ec09e929a16b78533c271a94724409a0;p=fio.git server: fix formatting issue Signed-off-by: Jens Axboe --- diff --git a/server.c b/server.c index 331c8c9f..cc4cbc2a 100644 --- a/server.c +++ b/server.c @@ -266,7 +266,8 @@ static int fio_send_data(int sk, const void *p, unsigned int len) return fio_sendv_data(sk, &iov, 1); } -bool fio_server_poll_fd(int fd, short events, int timeout) { +bool fio_server_poll_fd(int fd, short events, int timeout) +{ struct pollfd pfd = { .fd = fd, .events = events, @@ -2873,4 +2874,4 @@ void fio_server_internal_set(const char *arg) { fio_server_pipe_name = strdup(arg); } -#endif \ No newline at end of file +#endif