Skip to content
Snippets Groups Projects
Commit 71894112 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

hdf5: detect %I64d specifier

MSVC2015 has long long and uses I64 as the modifier. Other modifiers
cause the standard library to throw up runtime errors and causes the
test to fail.
parent 385e0e76
No related branches found
No related tags found
No related merge requests found
......@@ -245,7 +245,7 @@ int DebugReport(int reportType, char* message, int* returnValue)
int main(void)
{
char *llwidthArgs[] = { "l64", "l", "L", "q", "ll", NULL };
char *llwidthArgs[] = { "I64", "l64", "l", "L", "q", "ll", NULL };
char *s = malloc(128);
char **currentArg = NULL;
LL_TYPE x = (LL_TYPE)1048576 * (LL_TYPE)1048576;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment