aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/log_posix.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-01-15 11:37:30 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-01-15 11:37:30 -0800
commit32946d37e05714d358f66fb4ff8a204ce53d8573 (patch)
treef87c481963d3db4209da8fa07919a83bd1347a24 /src/core/support/log_posix.c
parentda2a953fd607933b2a56c55e713274377af38fd6 (diff)
() --> (void)
Diffstat (limited to 'src/core/support/log_posix.c')
-rw-r--r--src/core/support/log_posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/log_posix.c b/src/core/support/log_posix.c
index ee2705a2c2..1292c9e8c3 100644
--- a/src/core/support/log_posix.c
+++ b/src/core/support/log_posix.c
@@ -50,7 +50,7 @@
#include <time.h>
#include <pthread.h>
-static gpr_intptr gettid() { return (gpr_intptr)pthread_self(); }
+static gpr_intptr gettid(void) { return (gpr_intptr)pthread_self(); }
void gpr_log(const char *file, int line, gpr_log_severity severity,
const char *format, ...) {