summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorIqram Mahmud <iqram@google.com>2019-12-10 17:44:58 -0800
committerdormando <dormando@rydia.net>2020-01-13 17:42:53 -0800
commit4fce698331d65686de27680018c764dfc1c4c6d4 (patch)
tree0d80b7cbea232a2acc1639b868f3af477ef63676 /thread.c
parentacdfe1a45dc65507a4eb6a4edad3b3ac8abf151f (diff)
downloadmemcached-4fce698331d65686de27680018c764dfc1c4c6d4.tar.gz
Replace return\ \; with return;
In most of the sources codes of memcached return is followed by an immediate semicolon, except these line. This change will help future contributors to keep the style consistent.
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 40edaaa..7cba01e 100644
--- a/thread.c
+++ b/thread.c
@@ -561,7 +561,7 @@ void dispatch_conn_new(int sfd, enum conn_states init_state, int event_flags,
close(sfd);
/* given that malloc failed this may also fail, but let's try */
fprintf(stderr, "Failed to allocate memory for connection object\n");
- return ;
+ return;
}
int tid = (last_thread + 1) % settings.num_threads;