From e9a832e50833b4265fd8ed93fe58038a40131402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Mon, 27 Jul 2009 13:01:44 +0000 Subject: [PATCH] =?UTF-8?q?Change=20type=20of=20received=5Fsigterm=20varia?= =?UTF-8?q?ble=20from=20sig=5Fatomic=5Ft=20to=20int,=20which=20is=20more?= =?UTF-8?q?=20portable=20(works=20on=20Windows=20CE).=20patch=20by=20Marti?= =?UTF-8?q?n=20Storsj=C3=B6,=20martin=20martin=20st?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 19515 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)