aboutsummaryrefslogtreecommitdiff
path: root/src/ClientRead.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/ClientRead.cxx')
-rw-r--r--src/ClientRead.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ClientRead.cxx b/src/ClientRead.cxx
index 830820de..aab4cae3 100644
--- a/src/ClientRead.cxx
+++ b/src/ClientRead.cxx
@@ -28,7 +28,7 @@ extern "C" {
#include <string.h>
static char *
-client_read_line(struct client *client)
+client_read_line(Client *client)
{
size_t length;
const char *p = (const char *)fifo_buffer_read(client->input, &length);
@@ -46,7 +46,7 @@ client_read_line(struct client *client)
}
static enum command_return
-client_input_received(struct client *client, size_t bytesRead)
+client_input_received(Client *client, size_t bytesRead)
{
char *line;
@@ -69,7 +69,7 @@ client_input_received(struct client *client, size_t bytesRead)
}
enum command_return
-client_read(struct client *client)
+client_read(Client *client)
{
GError *error = NULL;
GIOStatus status;