Indent some #defines in tag.c for better readability

git-svn-id: https://svn.musicpd.org/mpd/trunk@4592 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman 2006-08-07 20:04:16 +00:00
parent 5f827ac126
commit 831ee7c63e

View File

@ -43,16 +43,16 @@
#endif #endif
#ifdef HAVE_ID3TAG #ifdef HAVE_ID3TAG
#define isId3v1(tag) (id3_tag_options(tag, 0, 0) & ID3_TAG_OPTION_ID3V1) # define isId3v1(tag) (id3_tag_options(tag, 0, 0) & ID3_TAG_OPTION_ID3V1)
/* Size of the buffer to use for peeking at tag headers. We reuse this buffer /* Size of the buffer to use for peeking at tag headers. We reuse this buffer
if the whole tag fits in it, so make it big to avoid a malloc(). */ if the whole tag fits in it, so make it big to avoid a malloc(). */
#define ID3_TAG_BUFLEN 1024 # define ID3_TAG_BUFLEN 1024
#ifndef ID3_FRAME_COMPOSER # ifndef ID3_FRAME_COMPOSER
#define ID3_FRAME_COMPOSER "TCOM" # define ID3_FRAME_COMPOSER "TCOM"
#endif # endif
#ifndef ID3_FRAME_DISC # ifndef ID3_FRAME_DISC
#define ID3_FRAME_DISC "TPOS" # define ID3_FRAME_DISC "TPOS"
#endif # endif
#endif #endif
char *mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] = { char *mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] = {