fix cppcheck warnings
[m6w6/ext-psi] / src / context.c
index 1090e98f83ac830115e72d6540566eccbda0ea9d..b4e73ad2015df02e3d06a91335bf0417a5aa6ce1 100644 (file)
@@ -85,8 +85,8 @@ struct psi_context *psi_context_init(struct psi_context *C, struct psi_context_o
                ops->init(C);
        }
 
-       ZEND_ASSERT(ops->call != NULL);
-       ZEND_ASSERT(ops->compile != NULL);
+       assert(ops->call != NULL);
+       assert(ops->compile != NULL);
 
        /* build up predefs in a temporary PSI_Data for validation */
        memset(&T, 0, sizeof(T));