diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:16:32 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:16:32 +0000 |
commit | f275a1a1abf353873ce85c5c66b2be7c51d317a5 (patch) | |
tree | d4be50e4a404dbcf7d6ba405ad3b7e91671c4ad0 /src/playlist.h | |
parent | 4e4441fd32e694753824a543c050e5d3c0b49a5a (diff) | |
download | mpd-f275a1a1abf353873ce85c5c66b2be7c51d317a5.tar.gz mpd-f275a1a1abf353873ce85c5c66b2be7c51d317a5.tar.xz mpd-f275a1a1abf353873ce85c5c66b2be7c51d317a5.zip |
Fix a few more warnings from -Wshadow
git-svn-id: https://svn.musicpd.org/mpd/trunk@7300 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/playlist.h')
-rw-r--r-- | src/playlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist.h b/src/playlist.h index 76ef19f31..7d6c92a14 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -124,9 +124,9 @@ unsigned long getPlaylistVersion(void); void playPlaylistIfPlayerStopped(void); -int seekSongInPlaylist(int fd, int song, float time); +int seekSongInPlaylist(int fd, int song, float seek_time); -int seekSongInPlaylistById(int fd, int id, float time); +int seekSongInPlaylistById(int fd, int id, float seek_time); void playlistVersionChange(void); |