windows: correct a preprocessor typo

GCC chokes on ##name## concatenation (since . and prepare are invalid
tokens)
This commit is contained in:
Luis Lavena 2011-09-02 19:40:34 -03:00 committed by Ben Noordhuis
parent cf5ed86a79
commit 6422a14a8f

View File

@ -49,7 +49,7 @@ void uv_loop_watcher_endgame(uv_loop_t* loop, uv_handle_t* handle) {
uv_ref(loop); \
\
loop->counters.handle_init++; \
loop->counters.##name##_init++; \
loop->counters.name##_init++; \
\
return 0; \
} \