From dc8b64fdef1f8bc4499eef3aca17ed336ea3569b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 7 Sep 2008 13:53:55 +0200 Subject: pass "struct client" to dbUtils.c, song.c, tag_print.c Don't pass the raw file descriptor around. This migration patch is rather large, because all of the sources have inter dependencies - we have to change all of them at the same time. --- src/tag_print.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/tag_print.h') diff --git a/src/tag_print.h b/src/tag_print.h index aa2b2898f..61c9114ac 100644 --- a/src/tag_print.h +++ b/src/tag_print.h @@ -20,9 +20,10 @@ #define TAG_PRINT_H struct tag; +struct client; -void tag_print_types(int fd); +void tag_print_types(struct client *client); -void tag_print(int fd, const struct tag *tag); +void tag_print(struct client *client, const struct tag *tag); #endif -- cgit v1.2.3