From 7a982169c9dc3a673e922e7f3b9b73368cef0aae Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Thu, 3 Jan 2013 17:27:26 +0100
Subject: Client: rename the struct client to class Client

---
 src/ClientRead.cxx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'src/ClientRead.cxx')

diff --git a/src/ClientRead.cxx b/src/ClientRead.cxx
index 830820dea..aab4cae33 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;
-- 
cgit v1.2.3