[FFmpeg-cvslog] r19515 - trunk/ffmpeg.c
diego
subversion
Mon Jul 27 15:01:44 CEST 2009
Author: diego
Date: Mon Jul 27 15:01:44 2009
New Revision: 19515
Log:
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
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c Mon Jul 27 14:53:44 2009 (r19514)
+++ trunk/ffmpeg.c Mon Jul 27 15:01:44 2009 (r19515)
@@ -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)
More information about the ffmpeg-cvslog
mailing list