aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag_pool.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-27 19:36:03 +0100
committerMax Kellermann <max@duempel.org>2009-03-27 19:36:03 +0100
commit51894725ec02dd796878414168c25857e2e0b95a (patch)
treec5cac4f5a489b6a3eadfa1f3d7b84850c78a20f0 /src/tag_pool.h
parent8fa44d53ab1c1edb0a78da32b69f4f71b91817db (diff)
downloadmpd-51894725ec02dd796878414168c25857e2e0b95a.tar.gz
mpd-51894725ec02dd796878414168c25857e2e0b95a.tar.xz
mpd-51894725ec02dd796878414168c25857e2e0b95a.zip
tag_pool: use size_t for string length
Diffstat (limited to 'src/tag_pool.h')
-rw-r--r--src/tag_pool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tag_pool.h b/src/tag_pool.h
index b9e3f375a..991a32a7e 100644
--- a/src/tag_pool.h
+++ b/src/tag_pool.h
@@ -32,8 +32,8 @@ void tag_pool_init(void);
void tag_pool_deinit(void);
-struct tag_item *tag_pool_get_item(enum tag_type type,
- const char *value, int length);
+struct tag_item *
+tag_pool_get_item(enum tag_type type, const char *value, size_t length);
struct tag_item *tag_pool_dup_item(struct tag_item *item);