Commit e02bdf92 authored by Mike Gabriel's avatar Mike Gabriel

hw/nxagent/Args.c: Fix fprintf placeholder (%u -> %lu).

parent 7e21611d
......@@ -1380,7 +1380,7 @@ static void nxagentParseOptions(char *name, char *value)
sleep_parse = UINT_MAX;
fprintf(stderr, "nxagentParseOptions: Warning: value [%s] of option [%s] "
"out of range, clamped to [%u].\n",
"out of range, clamped to [%lu].\n",
validateString(value), validateString(name), sleep_parse);
}
......@@ -1389,7 +1389,7 @@ static void nxagentParseOptions(char *name, char *value)
sleep_parse = 0;
fprintf(stderr, "nxagentParseOptions: Warning: value [%s] of option [%s] "
"out of range, clamped to [%u].\n",
"out of range, clamped to [%lu].\n",
validateString(value), validateString(name), sleep_parse);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment