diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-02-15 19:57:10 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-02-15 19:57:10 -0500 |
commit | b53b1881417f040c85e1f47d1136f954217ad0e7 (patch) | |
tree | 767ca9ac74c3bca8e43ceb523a2b13d6382f0307 | |
parent | 9f447d34909104da2527896ba85053356edf3b47 (diff) | |
download | dimension-b53b1881417f040c85e1f47d1136f954217ad0e7.tar.xz |
One more explicit empty parameter list fix.
Coccinelle is awesome.
-rw-r--r-- | dimension/platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dimension/platform.h b/dimension/platform.h index ffb3406..a2114be 100644 --- a/dimension/platform.h +++ b/dimension/platform.h @@ -26,6 +26,6 @@ * Get the width of the terminal. * @return The width (in characters) of the terminal, defaulting to 80. */ -unsigned int dmnsn_terminal_width(); +unsigned int dmnsn_terminal_width(void); #endif /* PLATFORM_H */ |