Skip to content
Snippets Groups Projects
Commit 6213acc4 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix incorrect cast.

parent 343dd1a6
No related branches found
No related tags found
2 merge requests!91Add alternative code path for huge buffers.,!89Miscellaneous fixes and CDI-PIO improvements
......@@ -378,7 +378,7 @@ cdiInitialize(void)
if (value >= 0) CDI_Chunk_Cache_Max = (size_t) value;
value = cdi_getenv_int("CDI_TEST");
if (value >= 0) CDI_Test = (size_t) value;
if (value >= 0) CDI_Test = (int) value;
envstr = getenv("CDI_GRIB1_TEMPLATE");
if (envstr) CDI_GRIB1_Template = envstr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment