diff options
author | schu <schu-github@schulog.org> | 2011-03-28 17:59:13 +0200 |
---|---|---|
committer | schu <schu-github@schulog.org> | 2011-03-28 17:59:13 +0200 |
commit | 683581a3e91032d9fdc203933d691b9353f24492 (patch) | |
tree | 6af6d056815c8094266ea9d483c4bbcb8604e30f | |
parent | 9d80d74da58207da65eebc4f5c1919fa382d8a38 (diff) | |
download | libgit2-683581a3e91032d9fdc203933d691b9353f24492.tar.gz |
index.c: Fix tiny typos
-rw-r--r-- | src/index.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.c b/src/index.c index 7e4d6bbc7..6a31dd5cb 100644 --- a/src/index.c +++ b/src/index.c @@ -74,7 +74,7 @@ struct entry_short { uint32_t file_size; git_oid oid; uint16_t flags; - char path[1]; /* arbritrary length */ + char path[1]; /* arbitrary length */ }; struct entry_long { @@ -89,7 +89,7 @@ struct entry_long { git_oid oid; uint16_t flags; uint16_t flags_extended; - char path[1]; /* arbritrary length */ + char path[1]; /* arbitrary length */ }; /* local declarations */ |