Commit 03152206 authored by Max Kellermann's avatar Max Kellermann

song: don't export newNullSong()

The function newNullSong() is only used internally in song.c.
parent a208d654
......@@ -33,7 +33,7 @@
#include "os_compat.h"
Song *newNullSong(void)
static Song *newNullSong(void)
{
Song *song = xmalloc(sizeof(Song));
......
......@@ -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 *);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment