aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2005-11-19 10:52:47 +0000
committerEric Wong <normalperson@yhbt.net>2005-11-19 10:52:47 +0000
commitf8597ccf257eb925db508cfc37a494e2b1397e64 (patch)
tree0bafdb0be022427f1d84dcae2e10f5e70f84c3d8 /src/tag.c
parente8a54efe414d9d25b71cef910b15935bea8c530e (diff)
downloadmpd-f8597ccf257eb925db508cfc37a494e2b1397e64.tar.gz
mpd-f8597ccf257eb925db508cfc37a494e2b1397e64.tar.xz
mpd-f8597ccf257eb925db508cfc37a494e2b1397e64.zip
remove C++ style comments
git-svn-id: https://svn.musicpd.org/mpd/trunk@3689 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tag.c b/src/tag.c
index d04b52abc..b1239f56d 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -324,7 +324,7 @@ static void deleteItem(MpdTag * tag, int index) {
assert(index < tag->numOfItems);
removeTagItemString(tag->items[index].type, tag->items[index].value);
- //free(tag->items[index].value);
+ /* free(tag->items[index].value); */
if(tag->numOfItems-index > 0) {
memmove(tag->items+index, tag->items+index+1,
@@ -358,7 +358,7 @@ void clearMpdTag(MpdTag * tag) {
for(i = 0; i < tag->numOfItems; i++) {
removeTagItemString(tag->items[i].type, tag->items[i].value);
- //free(tag->items[i].value);
+ /* free(tag->items[i].value); */
}
if(tag->items) free(tag->items);