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

Commit

Permalink
Use (void) for a function taking no arguments - fix gcc -Wstrict-prot…
Browse files Browse the repository at this point in the history
…otypes
  • Loading branch information
jedisct1 authored and bnoordhuis committed Nov 10, 2011
1 parent 224584c commit 9322dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/uv.h
Expand Up @@ -730,7 +730,7 @@ UV_EXTERN int uv_tty_set_mode(uv_tty_t*, int mode);
* To be called when the program exits. Resets TTY settings to default
* values for the next process to take over.
*/
UV_EXTERN void uv_tty_reset_mode();
UV_EXTERN void uv_tty_reset_mode(void);

/*
* Gets the current Window size. On success zero is returned.
Expand Down

0 comments on commit 9322dd1

Please sign in to comment.