Uppercase.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-03-29 23:17:50 +01:00
parent 8a87dcbcdc
commit 9b741175f2
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -1150,7 +1150,7 @@ PH7_PRIVATE sxi32 PH7_MemObjAdd(ph7_value *pObj1, ph7_value *pObj2, int bAddStor
PH7_PRIVATE const char *PH7_MemObjTypeDump(ph7_value *pVal) {
const char *zType = "";
if(pVal->iFlags & MEMOBJ_NULL) {
zType = "null";
zType = "NULL";
} else {
if(pVal->iFlags & MEMOBJ_HASHMAP) {
if(pVal->iFlags & MEMOBJ_MIXED) {