summaryrefslogtreecommitdiff
path: root/src/sp_utils.c
diff options
context:
space:
mode:
authorjvoisin2018-10-06 23:15:50 +0200
committerjvoisin2018-10-06 23:15:50 +0200
commit41f5fe02575611ac43848a3a95f337e57960d492 (patch)
treeecc5270734280063e20e66876eef89e09ca5b362 /src/sp_utils.c
parent2d615f1fac1a78012c0cce2e4e9f87c8e6df05b6 (diff)
Bump coverage again
Diffstat (limited to 'src/sp_utils.c')
-rw-r--r--src/sp_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_utils.c b/src/sp_utils.c
index 3def6da..d6d8c00 100644
--- a/src/sp_utils.c
+++ b/src/sp_utils.c
@@ -183,7 +183,7 @@ const zend_string* sp_zval_to_zend_string(const zval* zv) {
183 return zend_string_init("ARRAY", sizeof("ARRAY") - 1, 0); 183 return zend_string_init("ARRAY", sizeof("ARRAY") - 1, 0);
184 case IS_RESOURCE: 184 case IS_RESOURCE:
185 return zend_string_init("RESOURCE", sizeof("RESOURCE") - 1, 0); 185 return zend_string_init("RESOURCE", sizeof("RESOURCE") - 1, 0);
186 default: // LCOV_EXCL_LINE 186 default: // LCOV_EXCL_LINE
187 return zend_string_init("", 0, 0); // LCOV_EXCL_LINE 187 return zend_string_init("", 0, 0); // LCOV_EXCL_LINE
188 } 188 }
189} 189}