diff --git a/source/creator/creator.c b/source/creator/creator.c index db5485bada8..977cfbaa8d7 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -649,7 +649,11 @@ static int set_verbosity(int argc, const char **argv, void *UNUSED(data)) if (argc > 1) { int level = atoi(argv[1]); +#ifdef WITH_LIBMV libmv_setLoggingVerbosity(level); +#else + (void)level; +#endif return 1; }