diff options
author | Max Kellermann <max@duempel.org> | 2008-10-02 15:20:18 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-02 15:20:18 +0200 |
commit | 38fdf10851fae4204b0be424c0b79ee9271033b2 (patch) | |
tree | bce8818dd19fb95280e557ff5645585f19cb0fea /src/strfsong.h | |
parent | 7db42801fd3cbcb8d05ca7bd7ad9570a3071b378 (diff) | |
download | mpd-38fdf10851fae4204b0be424c0b79ee9271033b2.tar.gz mpd-38fdf10851fae4204b0be424c0b79ee9271033b2.tar.xz mpd-38fdf10851fae4204b0be424c0b79ee9271033b2.zip |
strfsong: constant pointers
Pass constant pointers to strfsong() and screen_lyrics_load().
Diffstat (limited to '')
-rw-r--r-- | src/strfsong.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/strfsong.h b/src/strfsong.h index 7c0361d9c..7770a8698 100644 --- a/src/strfsong.h +++ b/src/strfsong.h @@ -4,6 +4,7 @@ #include <glib.h> #include "libmpdclient.h" -gsize strfsong(gchar *s, gsize max, const gchar *format, mpd_Song *song); +gsize strfsong(gchar *s, gsize max, const gchar *format, + const struct mpd_song *song); #endif |