summaryrefslogtreecommitdiffstats
path: root/common/rop3.h
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-19 23:23:18 +0200
committerAlon Levy <alevy@redhat.com>2011-07-21 15:09:29 +0300
commit7db7212c3a336c9499bfcd10d2affbf76bf1d6b1 (patch)
treebc22c6321c5dafc5f5c2af8701875e87a043895f /common/rop3.h
parent0d1a9a3c89d9c31f7cc03b849bcec9ba698abb63 (diff)
downloadspice-7db7212c3a336c9499bfcd10d2affbf76bf1d6b1.tar.gz
spice-7db7212c3a336c9499bfcd10d2affbf76bf1d6b1.tar.xz
spice-7db7212c3a336c9499bfcd10d2affbf76bf1d6b1.zip
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. [picked from master with changes since no main_channel, spice_common, and a bunch of functions aren't there yet]
Diffstat (limited to 'common/rop3.h')
-rw-r--r--common/rop3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rop3.h b/common/rop3.h
index 549b02cd..3307649f 100644
--- a/common/rop3.h
+++ b/common/rop3.h
@@ -33,7 +33,7 @@ void do_rop3_with_pattern(uint8_t rop3, pixman_image_t *d, pixman_image_t *s, Sp
void do_rop3_with_color(uint8_t rop3, pixman_image_t *d, pixman_image_t *s, SpicePoint *src_pos,
uint32_t rgb);
-void rop3_init();
+void rop3_init(void);
#ifdef __cplusplus
}