Commit 86b9dbc1 by nulltoken

Fix MSVC compilation warnings

parent e087973e
...@@ -71,11 +71,11 @@ struct git_packbuilder { ...@@ -71,11 +71,11 @@ struct git_packbuilder {
git_cond progress_cond; git_cond progress_cond;
/* configs */ /* configs */
unsigned long delta_cache_size; uint64_t delta_cache_size;
unsigned long max_delta_cache_size; uint64_t max_delta_cache_size;
unsigned long cache_max_small_delta_size; uint64_t cache_max_small_delta_size;
unsigned long big_file_threshold; uint64_t big_file_threshold;
unsigned long window_memory_limit; uint64_t window_memory_limit;
int nr_threads; /* nr of threads to use */ int nr_threads; /* nr of threads to use */
......
...@@ -43,7 +43,7 @@ void test_object_raw_short__oid_shortener_stresstest_git_oid_shorten(void) ...@@ -43,7 +43,7 @@ void test_object_raw_short__oid_shortener_stresstest_git_oid_shorten(void)
for (i = 0; i < MAX_OIDS; ++i) { for (i = 0; i < MAX_OIDS; ++i) {
char *oid_text; char *oid_text;
sprintf(number_buffer, "%u", (unsigned int)i); p_snprintf(number_buffer, 16, "%u", (unsigned int)i);
git_hash_buf(&oid, number_buffer, strlen(number_buffer)); git_hash_buf(&oid, number_buffer, strlen(number_buffer));
oid_text = git__malloc(GIT_OID_HEXSZ + 1); oid_text = git__malloc(GIT_OID_HEXSZ + 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment