Commit b7fea3da authored by Michael Niedermayer's avatar Michael Niedermayer

libavcodec/dvdsubdec: remove exit() call in debug code

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 48f37664
...@@ -471,7 +471,7 @@ static void ppm_save(const char *filename, uint8_t *bitmap, int w, int h, ...@@ -471,7 +471,7 @@ static void ppm_save(const char *filename, uint8_t *bitmap, int w, int h,
f = fopen(filename, "w"); f = fopen(filename, "w");
if (!f) { if (!f) {
perror(filename); perror(filename);
exit(1); return;
} }
fprintf(f, "P6\n" fprintf(f, "P6\n"
"%d %d\n" "%d %d\n"
......
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