git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e21a892
)
Change type of received_sigterm variable from sig_atomic_t to int,
author
Martin Storsjö
<martin@martin.st>
Mon, 27 Jul 2009 13:01:44 +0000
(13:01 +0000)
committer
Diego Biurrun
<diego@biurrun.de>
Mon, 27 Jul 2009 13:01:44 +0000
(13:01 +0000)
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
ffmpeg.c
patch
|
blob
|
history
diff --git
a/ffmpeg.c
b/ffmpeg.c
index
b7fe947
..
e899180
100644
(file)
--- 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
in
t received_sigterm = 0;
static void
sigterm_handler(int sig)