diff options
author | Max Kellermann <max@duempel.org> | 2014-02-24 18:56:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-24 18:57:03 +0100 |
commit | bfae92e307aeeb80809b7cc9c44c48e87b595d22 (patch) | |
tree | 3061a48950edb85f74b1bcb72c7b91bc43089a82 /src/Main.cxx | |
parent | 9c5bf542d113ade94d7977cdfed505c138c9bc7b (diff) |
Main: use INT_MAX instead of G_MAXUINT
Diffstat (limited to 'src/Main.cxx')
-rw-r--r-- | src/Main.cxx | 2 |
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"); |