summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-05-31 07:09:26 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-05-31 07:09:26 (GMT)
commit8e29f903eb366b2d2e846dc35ec4510d2cb263ad (patch)
tree7b44b7c344f1dae36365d42e6164fc112849fded /cache.h
parenta192a909c0cdb8ea09b6513c4839fd6762989cb1 (diff)
parent17014090036b9b996707dfca5af69f1e87bd2315 (diff)
downloadgit-8e29f903eb366b2d2e846dc35ec4510d2cb263ad.zip
git-8e29f903eb366b2d2e846dc35ec4510d2cb263ad.tar.gz
git-8e29f903eb366b2d2e846dc35ec4510d2cb263ad.tar.bz2
Merge branch 'maint-1.5.1' into maint
* maint-1.5.1: 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 'cache.h')
-rw-r--r--cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cache.h b/cache.h
index 4204bc1..5dff2f1 100644
--- a/cache.h
+++ b/cache.h
@@ -359,8 +359,8 @@ extern int legacy_loose_object(unsigned char *);
extern int has_pack_file(const unsigned char *sha1);
extern int has_pack_index(const unsigned char *sha1);
-extern signed char hexval_table[256];
-static inline unsigned int hexval(unsigned int c)
+extern const signed char hexval_table[256];
+static inline unsigned int hexval(unsigned char c)
{
return hexval_table[c];
}