Commit 10aa3fa7 by Ramsay Jones Committed by Andreas Ericsson

Fix some "signed/unsigned mismatch" (msvc) compiler warnings

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Andreas Ericsson <ae@op5.se>
parent 4c9a3973
...@@ -63,7 +63,7 @@ int git__suffixcmp(const char *str, const char *suffix) ...@@ -63,7 +63,7 @@ int git__suffixcmp(const char *str, const char *suffix)
int git__dirname(char *dir, size_t n, char *path) int git__dirname(char *dir, size_t n, char *path)
{ {
char *s; char *s;
int len; size_t len;
assert(dir && n > 1); assert(dir && n > 1);
...@@ -89,7 +89,7 @@ int git__dirname(char *dir, size_t n, char *path) ...@@ -89,7 +89,7 @@ int git__dirname(char *dir, size_t n, char *path)
int git__basename(char *base, size_t n, char *path) int git__basename(char *base, size_t n, char *path)
{ {
char *s; char *s;
int len; size_t len;
assert(base && n > 1); assert(base && n > 1);
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
static int init_filter(char *filter, size_t n, const char *dir) static int init_filter(char *filter, size_t n, const char *dir)
{ {
int len = strlen(dir); size_t len = strlen(dir);
if (len+3 >= n) if (len+3 >= n)
return 0; return 0;
......
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