aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:38:24 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-02 00:13:19 -0700
commitdc5e7c97a337025ef7c51f3191548188b56f5162 (patch)
tree1f5324ce3870d800a5a035e8bdfb2ff86cb2691b /src
parent95451b5821da1383f476cd8d6c6c8d12e683b777 (diff)
downloadmpd-dc5e7c97a337025ef7c51f3191548188b56f5162.tar.gz
mpd-dc5e7c97a337025ef7c51f3191548188b56f5162.tar.xz
mpd-dc5e7c97a337025ef7c51f3191548188b56f5162.zip
tag: converted tag_add_item() to an inline function
Diffstat (limited to 'src')
-rw-r--r--src/tag.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tag.h b/src/tag.h
index 3f6df0021..8a056a9db 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -75,8 +75,11 @@ void tag_free(struct mpd_tag *tag);
void tag_add_item_n(struct mpd_tag *tag, enum tag_type itemType,
const char *value, size_t len);
-#define tag_add_item(tag, itemType, value) \
- tag_add_item_n(tag, itemType, value, strlen(value))
+static inline void tag_add_item(struct mpd_tag *tag, enum tag_type itemType,
+ const char *value)
+{
+ tag_add_item_n(tag, itemType, value, strlen(value));
+}
void tag_print_types(int fd);