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
This commit is contained in:
parent
e21a892163
commit
e9a832e508
1 changed files with 1 additions and 1 deletions
2
ffmpeg.c
2
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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue