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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-11-17 16:50:48 +0400
committernulltoken <emeric.fermas@gmail.com>2012-11-17 17:13:13 +0400
commit86b9dbc12f61c24457f2979e9496c85e115a3799 (patch)
tree54d8b65785bbe2d973551eb240fe54ce2f4fb7fb /src/pack-objects.h
parente087973ec7c3c504696e2be4fad688aa09715d8d (diff)
Fix MSVC compilation warnings
Diffstat (limited to 'src/pack-objects.h')
-rw-r--r--src/pack-objects.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pack-objects.h b/src/pack-objects.h
index 8c01f7189..e34cc2754 100644
--- a/src/pack-objects.h
+++ b/src/pack-objects.h
@@ -71,11 +71,11 @@ struct git_packbuilder {
git_cond progress_cond;
/* configs */
- unsigned long delta_cache_size;
- unsigned long max_delta_cache_size;
- unsigned long cache_max_small_delta_size;
- unsigned long big_file_threshold;
- unsigned long window_memory_limit;
+ uint64_t delta_cache_size;
+ uint64_t max_delta_cache_size;
+ uint64_t cache_max_small_delta_size;
+ uint64_t big_file_threshold;
+ uint64_t window_memory_limit;
int nr_threads; /* nr of threads to use */