Commit e9a832e5 authored by Martin Storsjö's avatar Martin Storsjö Committed by Diego Biurrun

Change type of received_sigterm variable from sig_atomic_t to int,

which is more portable (works on Windows CE).
patch by Martin Storsjö, martin martin st

Originally committed as revision 19515 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e21a8921
...@@ -326,7 +326,7 @@ static void term_exit(void) ...@@ -326,7 +326,7 @@ static void term_exit(void)
#endif #endif
} }
static volatile sig_atomic_t received_sigterm = 0; static volatile int received_sigterm = 0;
static void static void
sigterm_handler(int sig) sigterm_handler(int sig)
......
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