Commit 687dad60 authored by Geoff Simmons's avatar Geoff Simmons

fix a warning caught by clang

parent c7aee8b0
......@@ -718,7 +718,7 @@ main(int argc, char *argv[])
/* XXX: also set grouping in config file */
if (g_arg != NULL) {
grouping = VSLQ_Name2Grouping(g_arg, -1);
if (grouping == -1 || grouping == -2) {
if ((int)grouping == -1 || (int)grouping == -2) {
LOG_Log(LOG_CRIT, "Unknown grouping: %s", g_arg);
exit(EXIT_FAILURE);
}
......
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