summaryrefslogtreecommitdiff
path: root/src/libpiano/piano.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2011-12-23 21:35:51 +0100
committerLars-Dominik Braun <lars@6xq.net>2011-12-23 21:37:05 +0100
commitbe22806715ee51b5bb8d1fe9953f74bb2ee32792 (patch)
treecc49831d1f003b7c08d1f3077e5f5180d767ef43 /src/libpiano/piano.c
parentd20878bce0c0d84e5b49d1b9642e71bb0d18341a (diff)
downloadpianobar-be22806715ee51b5bb8d1fe9953f74bb2ee32792.tar.gz
pianobar-be22806715ee51b5bb8d1fe9953f74bb2ee32792.tar.bz2
pianobar-be22806715ee51b5bb8d1fe9953f74bb2ee32792.zip
Fix warnings found by -Wmissing-declarations
Diffstat (limited to 'src/libpiano/piano.c')
-rw-r--r--src/libpiano/piano.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libpiano/piano.c b/src/libpiano/piano.c
index 367a2c9..56f2bf7 100644
--- a/src/libpiano/piano.c
+++ b/src/libpiano/piano.c
@@ -62,7 +62,7 @@ void PianoInit (PianoHandle_t *ph) {
/* destroy artist linked list
*/
-void PianoDestroyArtists (PianoArtist_t *artists) {
+static void PianoDestroyArtists (PianoArtist_t *artists) {
PianoArtist_t *curArtist, *lastArtist;
curArtist = artists;
@@ -98,7 +98,7 @@ void PianoDestroyStation (PianoStation_t *station) {
/* free complete station list
* @param piano handle
*/
-void PianoDestroyStations (PianoStation_t *stations) {
+static void PianoDestroyStations (PianoStation_t *stations) {
PianoStation_t *curStation, *lastStation;
curStation = stations;
@@ -148,7 +148,7 @@ void PianoDestroyStationInfo (PianoStationInfo_t *info) {
/* destroy genre linked list
*/
-void PianoDestroyGenres (PianoGenre_t *genres) {
+static void PianoDestroyGenres (PianoGenre_t *genres) {
PianoGenre_t *curGenre, *lastGenre;
curGenre = genres;
@@ -163,7 +163,7 @@ void PianoDestroyGenres (PianoGenre_t *genres) {
/* destroy user information
*/
-void PianoDestroyUserInfo (PianoUserInfo_t *user) {
+static void PianoDestroyUserInfo (PianoUserInfo_t *user) {
free (user->webAuthToken);
free (user->authToken);
free (user->listenerId);