diff options
Diffstat (limited to '')
-rw-r--r-- | src/song.c | 2 | ||||
-rw-r--r-- | src/song.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/song.c b/src/song.c index c34fab830..f7e71d76f 100644 --- a/src/song.c +++ b/src/song.c @@ -33,7 +33,7 @@ #include "os_compat.h" -Song *newNullSong(void) +static Song *newNullSong(void) { Song *song = xmalloc(sizeof(Song)); diff --git a/src/song.h b/src/song.h index 4026fb7a9..f909c21ea 100644 --- a/src/song.h +++ b/src/song.h @@ -43,8 +43,6 @@ typedef struct _Song { typedef List SongList; -Song *newNullSong(void); - Song *newSong(const char *url, int songType, struct _Directory *parentDir); void freeSong(Song *); |