aboutsummaryrefslogtreecommitdiffstats
path: root/src/songvec.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-09-29 12:17:13 +0200
committerMax Kellermann <max@duempel.org>2008-09-29 12:17:13 +0200
commit6075119f0ae9b20c89f31b496918cc6508f16a48 (patch)
treeafb2d907af865936efc0b219b7c245118775e124 /src/songvec.h
parent5ec578119f5a62a1ca7fbf8e6c429a73ecbda3b3 (diff)
downloadmpd-6075119f0ae9b20c89f31b496918cc6508f16a48.tar.gz
mpd-6075119f0ae9b20c89f31b496918cc6508f16a48.tar.xz
mpd-6075119f0ae9b20c89f31b496918cc6508f16a48.zip
songvec_free => songvec_destroy
"free" implies the songvec structure itself is freed, which is not the case.
Diffstat (limited to 'src/songvec.h')
-rw-r--r--src/songvec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/songvec.h b/src/songvec.h
index f346b5277..e374798be 100644
--- a/src/songvec.h
+++ b/src/songvec.h
@@ -17,6 +17,6 @@ int songvec_delete(struct songvec *sv, Song *del);
void songvec_add(struct songvec *sv, Song *add);
-void songvec_free(struct songvec *sv);
+void songvec_destroy(struct songvec *sv);
#endif /* SONGVEC_H */