aboutsummaryrefslogtreecommitdiffstats
path: root/src/song.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:39:07 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-02 00:20:18 -0700
commitff13366268bde4493b431f50ae8fa8fcff2c9c80 (patch)
tree779d1ba42ba2f7fe06e37815b0d4ef70844e4da4 /src/song.c
parent82a37682c692896bbf74fbaa91f5da727e8e1b0e (diff)
downloadmpd-ff13366268bde4493b431f50ae8fa8fcff2c9c80.tar.gz
mpd-ff13366268bde4493b431f50ae8fa8fcff2c9c80.tar.xz
mpd-ff13366268bde4493b431f50ae8fa8fcff2c9c80.zip
song: don't export newNullSong()
The function newNullSong() is only used internally in song.c.
Diffstat (limited to 'src/song.c')
-rw-r--r--src/song.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song.c b/src/song.c
index 2958d0dc9..deba96ada 100644
--- a/src/song.c
+++ b/src/song.c
@@ -32,7 +32,7 @@
#include "os_compat.h"
-Song *newNullSong(void)
+static Song *newNullSong(void)
{
Song *song = xmalloc(sizeof(Song));