diff -r d416628d6c7d -r 56f55f2f70c0 src/properties.c --- a/src/properties.c Thu Dec 25 11:47:50 2025 +0100 +++ b/src/properties.c Thu Dec 25 11:48:25 2025 +0100 @@ -338,12 +338,12 @@ } // initialize the parser - char linebuf[cx_properties_load_buf_size]; - char fillbuf[cx_properties_load_fill_size]; + char linebuf[CX_PROPERTIES_LOAD_BUF_SIZE]; + char fillbuf[CX_PROPERTIES_LOAD_FILL_SIZE]; CxPropertiesStatus status; CxProperties parser; cxPropertiesInit(&parser, config); - cxPropertiesUseStack(&parser, linebuf, cx_properties_load_buf_size); + cxPropertiesUseStack(&parser, linebuf, CX_PROPERTIES_LOAD_BUF_SIZE); // read/fill/parse loop status = CX_PROPERTIES_NO_DATA;