Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
node: use variadic functions in ev-emul.h
Browse files Browse the repository at this point in the history
Fixes #3786.
  • Loading branch information
bnoordhuis committed Jul 28, 2012
1 parent f70b138 commit d559bed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ev-emul.h
Expand Up @@ -230,12 +230,12 @@ inline static void __ev_unref(void) {
}


inline static double __ev_now(/* variadic */) {
inline static double __ev_now(...) {
return uv_hrtime() / 1e9;
}


inline static void __ev_set_priority(/* variadic */) {
inline static void __ev_set_priority(...) {
}


Expand Down

0 comments on commit d559bed

Please sign in to comment.