aboutsummaryrefslogtreecommitdiffstats
path: root/src/Main.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-24 18:56:57 +0100
committerMax Kellermann <max@duempel.org>2014-02-24 18:57:03 +0100
commitbfae92e307aeeb80809b7cc9c44c48e87b595d22 (patch)
tree3061a48950edb85f74b1bcb72c7b91bc43089a82 /src/Main.cxx
parent9c5bf542d113ade94d7977cdfed505c138c9bc7b (diff)
downloadmpd-bfae92e307aeeb80809b7cc9c44c48e87b595d22.tar.gz
mpd-bfae92e307aeeb80809b7cc9c44c48e87b595d22.tar.xz
mpd-bfae92e307aeeb80809b7cc9c44c48e87b595d22.zip
Main: use INT_MAX instead of G_MAXUINT
Diffstat (limited to '')
-rw-r--r--src/Main.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.cxx b/src/Main.cxx
index be7c07272..fe91ed3a2 100644
--- a/src/Main.cxx
+++ b/src/Main.cxx
@@ -557,7 +557,7 @@ int mpd_main(int argc, char *argv[])
*instance->storage,
*instance->update,
config_get_unsigned(CONF_AUTO_UPDATE_DEPTH,
- G_MAXUINT));
+ INT_MAX));
#else
FormatWarning(main_domain,
"inotify: auto_update was disabled. enable during compilation phase");