From 16d385e4c7c8a8a424a44f46f81087572921d351 Mon Sep 17 00:00:00 2001 From: Mike Gelfand Date: Sat, 13 Jul 2019 23:02:27 +0300 Subject: [PATCH] Fixup code style --- libtransmission/file-posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/file-posix.c b/libtransmission/file-posix.c index f481a24c6..4763b7b22 100644 --- a/libtransmission/file-posix.c +++ b/libtransmission/file-posix.c @@ -988,7 +988,7 @@ bool tr_sys_file_lock(tr_sys_file_t handle, int operation, tr_error** error) #if defined(F_OFD_SETLK) - struct flock fl = {0}; + struct flock fl = { 0 }; switch (operation & (TR_SYS_FILE_LOCK_SH | TR_SYS_FILE_LOCK_EX | TR_SYS_FILE_LOCK_UN)) {