aboutsummaryrefslogtreecommitdiffstats
path: root/src/tagTracker.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-07 13:57:58 +0200
committerMax Kellermann <max@duempel.org>2008-09-07 13:57:58 +0200
commit4665f2bf32c59f263d22c2315d60509c9ae8854b (patch)
tree49d89bdd813e2a2a61ff210a2a720ff271cdcc2c /src/tagTracker.h
parent94293149b1375dad39745f2f8e5f1b8f0299cc61 (diff)
downloadmpd-4665f2bf32c59f263d22c2315d60509c9ae8854b.tar.gz
mpd-4665f2bf32c59f263d22c2315d60509c9ae8854b.tar.xz
mpd-4665f2bf32c59f263d22c2315d60509c9ae8854b.zip
tag: don't pass "fd" to printVisitedInTagTracker()
Pass the client struct instead of the raw file descriptor.
Diffstat (limited to 'src/tagTracker.h')
-rw-r--r--src/tagTracker.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tagTracker.h b/src/tagTracker.h
index 2edb5aad0..f3c778329 100644
--- a/src/tagTracker.h
+++ b/src/tagTracker.h
@@ -19,6 +19,8 @@
#ifndef TAG_TRACKER_H
#define TAG_TRACKER_H
+struct client;
+
int getNumberOfTagItems(int type);
void printMemorySavedByTagTracker(void);
@@ -27,6 +29,6 @@ void resetVisitedFlagsInTagTracker(int type);
void visitInTagTracker(int type, const char *str);
-void printVisitedInTagTracker(int fd, int type);
+void printVisitedInTagTracker(struct client *client, int type);
#endif