summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-08-30 04:17:21 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-08-30 04:17:21 (GMT)
commit5de36bfec9beb65f8d0328b367dcf0e7d74d30bb (patch)
tree746e533303dd2245042defb0484458fdb879c846
parentcf6de18aabf774dfce7efd9c59babfe9d909d433 (diff)
downloadgit-5de36bfec9beb65f8d0328b367dcf0e7d74d30bb.zip
git-5de36bfec9beb65f8d0328b367dcf0e7d74d30bb.tar.gz
git-5de36bfec9beb65f8d0328b367dcf0e7d74d30bb.tar.bz2
Fix compilation warnings.
... found by compiling them with gcc 2.95. Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--commit.c2
-rw-r--r--diff.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/commit.c b/commit.c
index e51eda1..2f73cf3 100644
--- a/commit.c
+++ b/commit.c
@@ -357,7 +357,7 @@ static int get_one_line(const char *msg, unsigned long len)
static int add_user_info(const char *what, enum cmit_fmt fmt, char *buf, const char *line)
{
char *date;
- unsigned int namelen;
+ int namelen;
unsigned long time;
int tz, ret;
diff --git a/diff.c b/diff.c
index 9015c81..527cbf0 100644
--- a/diff.c
+++ b/diff.c
@@ -704,7 +704,7 @@ static int parse_num(const char **cp_p)
scale *= 10;
num = num * 10 + ch - '0';
}
- *cp++;
+ cp++;
}
*cp_p = cp;