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:
authorunknown <Romain@.(none)>2011-06-03 21:38:46 +0400
committerRomain Geissler <romain.geissler@gmail.com>2011-06-03 23:03:58 +0400
commitbb88da7f90f23a89ebae58bd90d9859feec84530 (patch)
tree58528e565dcea66b86b508c5a4e7e0ee62065636 /src/sha1_lookup.c
parent04fdc10d3581fb58adc2a3a375fdbb5d57774027 (diff)
Sha1Lookup: Fixed two MSVC compilation warnings.
Diffstat (limited to 'src/sha1_lookup.c')
-rw-r--r--src/sha1_lookup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sha1_lookup.c b/src/sha1_lookup.c
index f4a3c42cc..6ac00c5aa 100644
--- a/src/sha1_lookup.c
+++ b/src/sha1_lookup.c
@@ -97,7 +97,7 @@ int sha1_entry_pos(const void *table,
unsigned lo, unsigned hi, unsigned nr,
const unsigned char *key)
{
- const unsigned char *base = table;
+ const unsigned char *base = (const unsigned char*)table;
const unsigned char *hi_key, *lo_key;
unsigned ofs_0;
@@ -192,5 +192,5 @@ int sha1_entry_pos(const void *table,
lo_key = mi_key + elem_size;
}
} while (lo < hi);
- return -lo-1;
+ return -((int)lo)-1;
}