aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistFile.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-17 22:03:58 +0200
committerMax Kellermann <max@duempel.org>2013-10-17 22:08:56 +0200
commit4817437d31ab5f3c9969b8cc228e2f1826a0fbc2 (patch)
tree63ccba6966ce55e4eec40e354e0560b406eb9483 /src/PlaylistFile.cxx
parent354b5a9365638068e746ca8b008171cbfe804c8a (diff)
downloadmpd-4817437d31ab5f3c9969b8cc228e2f1826a0fbc2.tar.gz
mpd-4817437d31ab5f3c9969b8cc228e2f1826a0fbc2.tar.xz
mpd-4817437d31ab5f3c9969b8cc228e2f1826a0fbc2.zip
fs/Limits: convert macro to "constexpr"
Diffstat (limited to '')
-rw-r--r--src/PlaylistFile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx
index a82acc1f8..19085f496 100644
--- a/src/PlaylistFile.cxx
+++ b/src/PlaylistFile.cxx
@@ -384,7 +384,7 @@ spl_append_song(const char *utf8path, Song *song, Error &error)
return false;
}
- if (st.st_size / (MPD_PATH_MAX + 1) >= (off_t)playlist_max_length) {
+ if (st.st_size / off_t(MPD_PATH_MAX + 1) >= (off_t)playlist_max_length) {
fclose(file);
error.Set(playlist_domain, PLAYLIST_RESULT_TOO_LARGE,
"Stored playlist is too large");