From 75c2029b1c3b59a5922eebc7cf91607758823c45 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 27 Feb 2009 09:01:55 +0100 Subject: tag: no CamelCase Renamed numOfItems to num_items. --- src/tag.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tag.h') diff --git a/src/tag.h b/src/tag.h index 52e66bb7..0348ad47 100644 --- a/src/tag.h +++ b/src/tag.h @@ -48,7 +48,7 @@ enum tag_type { TAG_NUM_OF_ITEM_TYPES }; -extern const char *mpdTagItemKeys[]; +extern const char *tag_item_names[]; struct tag_item { enum tag_type type; @@ -58,7 +58,7 @@ struct tag_item { struct tag { int time; struct tag_item **items; - uint8_t numOfItems; + uint8_t num_items; }; struct tag *tag_ape_load(const char *file); @@ -112,7 +112,7 @@ tag_merge(const struct tag *base, const struct tag *add); static inline bool tag_is_empty(const struct tag *tag) { - return tag->numOfItems == 0; + return tag->num_items == 0; } /** -- cgit v1.2.3