aboutsummaryrefslogtreecommitdiffstats
path: root/cache.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-09 00:25:22 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-09 00:25:22 -0700
commit59c1e249808c6ba38194733fa00efddb9e0eb488 (patch)
tree8bd5667ce5588ab02c103c9aa8d8f1c6e90da56f /cache.h
parent1ea34e365b1ea233be332245bc34a8df415a7d61 (diff)
downloadgit-59c1e249808c6ba38194733fa00efddb9e0eb488.tar.gz
Fix missing return values and some error tests for empty index files
Patches from Dave Jones and Ingo Molnar, but since I don't have any infrastructure in place to use the old patch applicator scripts I am trying to build up, I ended up fixing the thing by hand instead. Credit where credit is due, though. Nice to see that people are taking a look at the project even in this early stage.
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 864f70bfe5..900824abfa 100644
--- a/cache.h
+++ b/cache.h
@@ -56,7 +56,7 @@ struct cache_entry {
unsigned int st_size;
unsigned char sha1[20];
unsigned short namelen;
- unsigned char name[0];
+ char name[0];
};
const char *sha1_file_directory;