Fixes.
h3rald h3rald@h3rald.com
Fri, 22 Nov 2024 11:46:53 +0100
M
hex.c
→
hex.c
@@ -903,7 +903,7 @@ case HEX_TYPE_INTEGER:
fprintf(stream, "0x%x", element.data.intValue); break; case HEX_TYPE_STRING: - fprintf(stream, element.data.strValue); + fprintf(stream, "%s", element.data.strValue); break; case HEX_TYPE_USER_SYMBOL: case HEX_TYPE_NATIVE_SYMBOL:@@ -3160,7 +3160,7 @@ }
} HEX_ERRORS = 1; - if (HEX_ERROR != "") + if (strcmp(HEX_ERROR, "")) { for (size_t i = 0; i < catchBlock.quotationSize; i++) {