diff options
author | Iqram Mahmud <iqram@google.com> | 2019-12-10 17:44:58 -0800 |
---|---|---|
committer | dormando <dormando@rydia.net> | 2020-01-13 17:42:53 -0800 |
commit | 4fce698331d65686de27680018c764dfc1c4c6d4 (patch) | |
tree | 0d80b7cbea232a2acc1639b868f3af477ef63676 /thread.c | |
parent | acdfe1a45dc65507a4eb6a4edad3b3ac8abf151f (diff) | |
download | memcached-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |