summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2009-07-27 13:01:44 +0000
committerDiego Biurrun <diego@biurrun.de>2009-07-27 13:01:44 +0000
commite9a832e50833b4265fd8ed93fe58038a40131402 (patch)
tree33164698f27eba11c1a58383a57d6d096b14938d /ffmpeg.c
parente21a892163a49500a04ffa54923f3761453791ad (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index b7fe947aa1..e8991808a1 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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)