diff options
author | root <root> | 2007-12-12 00:17:08 +0000 |
---|---|---|
committer | root <root> | 2007-12-12 00:17:08 +0000 |
commit | 4179355c2b48ffa197ae4cf21b521ccf0201436c (patch) | |
tree | 16fb37e1850cd18c21d3bd81f58f9e7399917c82 /ev_vars.h | |
parent | 71cf1659dedacff243a2aa51499d4a75e48f9443 (diff) |
fix some aliasing issues again
Diffstat (limited to 'ev_vars.h')
-rw-r--r-- | ev_vars.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -63,12 +63,12 @@ VARx(int *, fdchanges) VARx(int, fdchangemax) VARx(int, fdchangecnt) -VARx(struct ev_timer **, timers) +VARx(WT *, timers) VARx(int, timermax) VARx(int, timercnt) #if EV_PERIODIC_ENABLE || EV_GENWRAP -VARx(struct ev_periodic **, periodics) +VARx(WT *, periodics) VARx(int, periodicmax) VARx(int, periodiccnt) #endif |