Browse Source

rotozoom: Return an error value instead of calling exit().

tags/n0.8
Diego Biurrun 15 years ago
parent
commit
771339ca20
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/rotozoom.c

+ 1
- 1
tests/rotozoom.c View File

@@ -279,7 +279,7 @@ int main(int argc, char **argv)
if (argc != 3) {
printf("usage: %s directory/ image.pnm\n"
"generate a test video stream\n", argv[0]);
exit(1);
return 1;
}

w = DEFAULT_WIDTH;


Loading…
Cancel
Save