summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2013-02-28 00:33:25 +0000
committerroot <root>2013-02-28 00:33:25 +0000
commitdf020dfa5bcc6d6af3d84204fa6a286f19564b11 (patch)
tree5772f1368ea00cf713a9fc1e73e8eb5692be3747
parent65e3a26ad9a70952912c9c232737e57827f24612 (diff)
avoid c99ism
-rw-r--r--ev.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ev.c b/ev.c
index e9850a2..a03a40f 100644
--- a/ev.c
+++ b/ev.c
@@ -2241,8 +2241,9 @@ void
ev_feed_signal (int signum) EV_THROW
{
#if EV_MULTIPLICITY
+ EV_P;
ECB_MEMORY_FENCE_ACQUIRE;
- EV_P = signals [signum - 1].loop;
+ EV_A = signals [signum - 1].loop;
if (!EV_A)
return;