diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 14:08:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 14:08:37 +0200 |
commit | 86d261bdb5cb18665ecd656bf46e502744ce89f8 (patch) | |
tree | 61eb08aeaf621e875286c7b985b81e2b09c6b06e /src/client.h | |
parent | 322e908893b781f4536b13bcf8a5c526a92e8b10 (diff) | |
download | mpd-86d261bdb5cb18665ecd656bf46e502744ce89f8.tar.gz mpd-86d261bdb5cb18665ecd656bf46e502744ce89f8.tar.xz mpd-86d261bdb5cb18665ecd656bf46e502744ce89f8.zip |
removed fdprintf() and client_print()
All callers of fdprintf() have been converted to client_printf() or
fprintf(); it is time to remove this clumsy hack now. We can also
remove client_print() which took a file descriptor as parameter.
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client.h b/src/client.h index d5577c331..f0e35bf5c 100644 --- a/src/client.h +++ b/src/client.h @@ -53,6 +53,4 @@ void client_vprintf(struct client *client, const char *fmt, va_list args); */ mpd_fprintf void client_printf(struct client *client, const char *fmt, ...); -int client_print(int fd, const char *buffer, size_t len); - #endif |