aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/slice.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/slice.c
parentda2a953fd607933b2a56c55e713274377af38fd6 (diff)
() --> (void)
Diffstat (limited to 'src/core/support/slice.c')
-rw-r--r--src/core/support/slice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/slice.c b/src/core/support/slice.c
index fcdeb478fb..836a5a6c2a 100644
--- a/src/core/support/slice.c
+++ b/src/core/support/slice.c
@@ -37,7 +37,7 @@
#include <string.h>
-gpr_slice gpr_empty_slice() {
+gpr_slice gpr_empty_slice(void) {
gpr_slice out;
out.refcount = 0;
out.data.inlined.length = 0;