Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
windows: correct a preprocessor typo
GCC chokes on ##name## concatenation (since . and prepare are invalid
tokens)
  • Loading branch information
luislavena authored and bnoordhuis committed Sep 4, 2011
1 parent cf5ed86 commit 6422a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/loop-watcher.c
Expand Up @@ -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; \
} \
Expand Down

0 comments on commit 6422a14

Please sign in to comment.