diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 19:37:51 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 19:39:23 +0200 |
commit | c85af12d45928aecb20a087a009e1f5f19f980e2 (patch) | |
tree | 1f9fa24bcd5b5e795b4651e30fe3283c42d9b4a2 /src/SongSticker.cxx | |
parent | e452d1f5b42fac9acdd4d8e5d86eb28b73a3bbc6 (diff) | |
download | mpd-c85af12d45928aecb20a087a009e1f5f19f980e2.tar.gz mpd-c85af12d45928aecb20a087a009e1f5f19f980e2.tar.xz mpd-c85af12d45928aecb20a087a009e1f5f19f980e2.zip |
StickerDatabase: return std::string
Diffstat (limited to '')
-rw-r--r-- | src/SongSticker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SongSticker.cxx b/src/SongSticker.cxx index 141e286b5..4932e0ef8 100644 --- a/src/SongSticker.cxx +++ b/src/SongSticker.cxx @@ -28,7 +28,7 @@ #include <assert.h> #include <string.h> -char * +std::string sticker_song_get_value(const Song *song, const char *name) { assert(song != NULL); |