Chunk loading example

This commit is contained in:
2025-11-09 12:50:15 -06:00
parent eff5fc3d9a
commit 307f3a9dec
12 changed files with 169 additions and 21 deletions

View File

@@ -152,7 +152,7 @@ errorret_t errorPrint(const errorret_t retval);
*/
#define errorChain(retval) { \
errorret_t errorChainRetval = (retval); \
if (errorChainRetval.code != ERROR_OK) { \
if(errorChainRetval.code != ERROR_OK) { \
return errorChainImpl(errorChainRetval, __FILE__, __func__, __LINE__); \
} \
}