diff options
author | Junio C Hamano <junkio@cox.net> | 2007-05-31 00:15:14 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-31 00:15:14 -0700 |
commit | bd724be4bec4e75014e8e528a9c3c9a90b2d4488 (patch) | |
tree | ba3283d8a719924269bac8bb41e97b7bcae314a1 /sha1_file.c | |
parent | f7c22cc68ccba0cb5bbd43177507795c48afb1f5 (diff) | |
parent | 8e29f903eb366b2d2e846dc35ec4510d2cb263ad (diff) | |
download | git-bd724be4bec4e75014e8e528a9c3c9a90b2d4488.tar.gz |
Merge branch 'maint'
* maint:
git-config: Improve documentation of git-config file handling
git-config: Various small fixes to asciidoc documentation
decode_85(): fix missing return.
fix signed range problems with hex conversions
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index cf855ac244..a1b8fca6c9 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -33,7 +33,7 @@ const unsigned char null_sha1[20]; static unsigned int sha1_file_open_flag = O_NOATIME; -signed char hexval_table[256] = { +const signed char hexval_table[256] = { -1, -1, -1, -1, -1, -1, -1, -1, /* 00-07 */ -1, -1, -1, -1, -1, -1, -1, -1, /* 08-0f */ -1, -1, -1, -1, -1, -1, -1, -1, /* 10-17 */ |