diff options
author | Martin Storsjö <martin@martin.st> | 2009-07-27 13:01:44 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-07-27 13:01:44 +0000 |
commit | e9a832e50833b4265fd8ed93fe58038a40131402 (patch) | |
tree | 33164698f27eba11c1a58383a57d6d096b14938d /ffmpeg.c | |
parent | e21a892163a49500a04ffa54923f3761453791ad (diff) | |
download | ffmpeg-e9a832e50833b4265fd8ed93fe58038a40131402.tar.gz |
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
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -326,7 +326,7 @@ static void term_exit(void) #endif } -static volatile sig_atomic_t received_sigterm = 0; +static volatile int received_sigterm = 0; static void sigterm_handler(int sig) |