fix for building without libmv

This commit is contained in:
2012-05-12 09:40:23 +00:00
parent 07595ab2f5
commit 68e27b749e

View File

@@ -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;
}