aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/ext/grpc/call.h
diff options
context:
space:
mode:
authorGravatar Xiaoguang Sun <sunxiaoguang@hoolai.com>2015-03-13 14:22:31 +0800
committerGravatar Xiaoguang Sun <sunxiaoguang@hoolai.com>2015-03-13 14:22:31 +0800
commit8a929a965b89251ac54ad0bf9beb0a8f0a7d2258 (patch)
tree3cefefbeb8816b80d8f67829faae38b1e3a5b6af /src/php/ext/grpc/call.h
parentf9007045f25b5886b71f69fbbc23d5078f5f7466 (diff)
Fix duplicated symbols
Fix duplicated symbols caused by having definition instead of declaration in header file.
Diffstat (limited to 'src/php/ext/grpc/call.h')
-rw-r--r--src/php/ext/grpc/call.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/ext/grpc/call.h b/src/php/ext/grpc/call.h
index 827e9a27a8..bce5d82974 100644
--- a/src/php/ext/grpc/call.h
+++ b/src/php/ext/grpc/call.h
@@ -57,7 +57,7 @@
} while (0)
/* Class entry for the Call PHP class */
-zend_class_entry *grpc_ce_call;
+extern zend_class_entry *grpc_ce_call;
/* Wrapper struct for grpc_call that can be associated with a PHP object */
typedef struct wrapped_grpc_call {