summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/os_posix/os_remove.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/os_posix/os_remove.c b/src/os_posix/os_remove.c
index 5220b903336..596dc08ba69 100644
--- a/src/os_posix/os_remove.c
+++ b/src/os_posix/os_remove.c
@@ -22,8 +22,7 @@ __remove_file_check(WT_SESSION_IMPL *session, const char *name)
conn = S2C(session);
fh = NULL;
- bucket = __wt_hash_city64(name, strlen(name)) %
- WT_HASH_ARRAY_SIZE;
+ bucket = __wt_hash_city64(name, strlen(name)) % WT_HASH_ARRAY_SIZE;
/*
* Check if the file is open: it's an error if it is, since a higher