diff options
author | Junio C Hamano <junkio@cox.net> | 2005-08-29 21:17:21 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-29 21:17:21 -0700 |
commit | 5de36bfec9beb65f8d0328b367dcf0e7d74d30bb (patch) | |
tree | 746e533303dd2245042defb0484458fdb879c846 /diff.c | |
parent | [PATCH] Update Thunderbird specific hints. (diff) | |
download | tgif-5de36bfec9beb65f8d0328b367dcf0e7d74d30bb.tar.xz |
Fix compilation warnings.
... found by compiling them with gcc 2.95.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -704,7 +704,7 @@ static int parse_num(const char **cp_p) scale *= 10; num = num * 10 + ch - '0'; } - *cp++; + cp++; } *cp_p = cp; |