summaryrefslogtreecommitdiffstats
path: root/server/red_channel.h
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-09-05 02:54:20 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-09-05 07:52:20 +0200
commit011266555a78e000a69caf9c3009f71caa9f7dc2 (patch)
tree4e6684bc3b378bf131b55347da39bf812459564e /server/red_channel.h
parent7e1c773325c6f18af7b135dc2ee2b799801c2f57 (diff)
downloadspice-011266555a78e000a69caf9c3009f71caa9f7dc2.tar.gz
spice-011266555a78e000a69caf9c3009f71caa9f7dc2.tar.xz
spice-011266555a78e000a69caf9c3009f71caa9f7dc2.zip
server: fix function prototypes
Several functions in server/ were not specifying an argument list, ie they were declared as void foo(); When compiling with -Wstrict-prototypes, this leads to: test_playback.c:93:5: erreur: function declaration isn’t a prototype [-Werror=strict-prototypes]
Diffstat (limited to 'server/red_channel.h')
-rw-r--r--server/red_channel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/red_channel.h b/server/red_channel.h
index a24ff7db..2ebb6b63 100644
--- a/server/red_channel.h
+++ b/server/red_channel.h
@@ -433,7 +433,7 @@ struct RedClient {
int disconnecting;
};
-RedClient *red_client_new();
+RedClient *red_client_new(void);
MainChannelClient *red_client_get_main(RedClient *client);
// main should be set once before all the other channels are created
void red_client_set_main(RedClient *client, MainChannelClient *mcc);