Browse code

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

Martin Storsjö authored on 2009/07/27 22:01:44
Showing 1 changed files
... ...
@@ -326,7 +326,7 @@ static void term_exit(void)
326 326
 #endif
327 327
 }
328 328
 
329
-static volatile sig_atomic_t received_sigterm = 0;
329
+static volatile int received_sigterm = 0;
330 330
 
331 331
 static void
332 332
 sigterm_handler(int sig)