aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2006-08-07 15:46:35 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2006-08-07 15:46:35 +0000
commit7c9d3c4186adeeb712117580a8523d647623141c (patch)
treea0976c0635eb716198f37fa6502e1010f58ff9aa /src/tag.c
parentb9f13d568a423359fdb3a4f62e0a4f00fa237611 (diff)
downloadmpd-7c9d3c4186adeeb712117580a8523d647623141c.tar.gz
mpd-7c9d3c4186adeeb712117580a8523d647623141c.tar.xz
mpd-7c9d3c4186adeeb712117580a8523d647623141c.zip
Reformatting initCommands and fillBuffer
git-svn-id: https://svn.musicpd.org/mpd/trunk@4582 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tag.c b/src/tag.c
index 62c04893a..c8f03c9b1 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -211,8 +211,7 @@ MpdTag *parseId3Tag(struct id3_tag * tag)
static int fillBuffer(void *buf, size_t size, FILE * stream,
long offset, int whence)
{
- if (fseek(stream, offset, whence) != 0)
- return 0;
+ if (fseek(stream, offset, whence) != 0) return 0;
return fread(buf, 1, size, stream);
}
#endif