diff options
author | Slávek Banko <[email protected]> | 2016-09-03 18:11:41 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-03 18:11:53 +0200 |
commit | ea8fc9b337f4a6afe248ee70c76edee4e95b5ece (patch) | |
tree | 335d07867a1f39f651bb4d2cbb13d9da99dff881 | |
parent | 1e434c4ec983cfa30c6f1b137ef0655b2319e382 (diff) | |
download | tdesvn-ea8fc9b337f4a6afe248ee70c76edee4e95b5ece.tar.gz tdesvn-ea8fc9b337f4a6afe248ee70c76edee4e95b5ece.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit fba5c35ca3d39b0406ffdd74c714f407087029fe)
-rw-r--r-- | src/svnqt/contextdata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svnqt/contextdata.cpp b/src/svnqt/contextdata.cpp index 4bbfabc..59d724a 100644 --- a/src/svnqt/contextdata.cpp +++ b/src/svnqt/contextdata.cpp @@ -738,7 +738,7 @@ void ContextData::initMimeTypes() svn_config_get(cfg, &mimetypes_file, SVN_CONFIG_SECTION_MISCELLANY, - SVN_CONFIG_OPTION_MIMETYPES_FILE, false); + SVN_CONFIG_OPTION_MIMETYPES_FILE, 0); if (mimetypes_file && *mimetypes_file) { if ((err = svn_io_parse_mimetypes_file(&(m_ctx->mimetypes_map), mimetypes_file, pool))) { |