Skip to content
This repository was archived by the owner on Dec 30, 2025. It is now read-only.

Commit 8cce611

Browse files
committed
fix build warning
1 parent ac86e9f commit 8cce611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/sonivoxrender.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ int main (int argc, char **argv)
439439
case 'V':
440440
verbosity = atoi(optarg);
441441
if ((verbosity < 0) || (verbosity > 5)) {
442-
fprintf(stderr, "invalid verbosity level: %ld\n", verbosity);
442+
fprintf(stderr, "invalid verbosity level: %d\n", verbosity);
443443
return EXIT_FAILURE;
444444
}
445445
break;

0 commit comments

Comments
 (0)