diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2011-04-19 23:23:18 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-03-20 15:25:51 +0100 |
commit | 57b6e08160ea1a0f7623310d5ed3c018ab5ee39c (patch) | |
tree | 87808284081c3ecfa4b328ce59b4e940f97219b7 /common/gl_canvas.c | |
parent | c1530facf4971748b0635c24ae3ab5c0dddd710f (diff) |
use foo(void) instead of foo() in prototypes
In C, the latter isn't a prototype for a function with no arg,
but declares a function with an undefined number of args.
Diffstat (limited to 'common/gl_canvas.c')
-rw-r--r-- | common/gl_canvas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/gl_canvas.c b/common/gl_canvas.c index 3edb2c7..9867c4f 100644 --- a/common/gl_canvas.c +++ b/common/gl_canvas.c @@ -870,7 +870,7 @@ static void gl_canvas_destroy(SpiceCanvas *spice_canvas) free(canvas); } -void gl_canvas_init() //unsafe global function +void gl_canvas_init(void) //unsafe global function { if (!need_init) { return; |