Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2015-03-18 17:05:43 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:40:16 +0300
commitcaa75e4cdadd397c7a25d1b6771b64457ab736a1 (patch)
tree25a4d1616ffc4109289c7ce11276b8637ff0d6f0 /coding/constants.hpp
parentbab27e45331275315e5f69af398f485b45381634 (diff)
Correct warning fix in zip creator.
Diffstat (limited to 'coding/constants.hpp')
-rw-r--r--coding/constants.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/coding/constants.hpp b/coding/constants.hpp
index cbf0d41964..c37e681ec0 100644
--- a/coding/constants.hpp
+++ b/coding/constants.hpp
@@ -1,4 +1,4 @@
#pragma once
static const size_t READ_FILE_BUFFER_SIZE = 512 * 1024;
-static const size_t ZIP_FILE_BUFFER_SIZE = 64 * 1024;
+static const unsigned int ZIP_FILE_BUFFER_SIZE = 64 * 1024;