diff options
author | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-17 20:23:27 +0100 |
commit | 4d472c265ed0b3f7f61ee624c01c8ef319db7c99 (patch) | |
tree | 8ec3ea874c741c9b0e1ab70db2a96e02acec8225 /src/playlist.c | |
parent | 2bbf378dd8a3f12b4b79228ce562402c29d2cd09 (diff) | |
download | mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.gz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.tar.xz mpd-4d472c265ed0b3f7f61ee624c01c8ef319db7c99.zip |
conf: no CamelCase, part I
Renamed functions, types, variables.
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist.c b/src/playlist.c index 183676854..4d4e0102d 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -120,7 +120,7 @@ static void incrPlaylistCurrent(void) void initPlaylist(void) { char *test; - ConfigParam *param; + struct config_param *param; int value; g_rand = g_rand_new(); @@ -132,7 +132,7 @@ void initPlaylist(void) playlist.queued = -1; playlist.current = -1; - param = getConfigParam(CONF_MAX_PLAYLIST_LENGTH); + param = config_get_param(CONF_MAX_PLAYLIST_LENGTH); if (param) { playlist_max_length = strtol(param->value, &test, 10); |