Commit b5087270 authored by David Reid's avatar David Reid

Fix a diagnostic error.

parent d8727b23
...@@ -224,7 +224,7 @@ int main(int argc, char** argv) ...@@ -224,7 +224,7 @@ int main(int argc, char** argv)
} }
if (!try_parse_uint32_in_range(argv[iarg], &linearOrder, 0, 8)) { if (!try_parse_uint32_in_range(argv[iarg], &linearOrder, 0, 8)) {
printf("Expecting a number between 0 and 8 for --linear-order.\n"); printf("Expecting a number between 0 and %d for --linear-order.\n", MA_MAX_FILTER_ORDER);
return -1; return -1;
} }
......
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