diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2014-06-13 19:19:23 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-13 11:49:10 -0700 |
commit | 03b86647722f11ccc321cd7279aa49b811d17cc2 (patch) | |
tree | dc5b717a01867692ce344d1548ad5a82ac1c1881 /test-scrap-cache-tree.c | |
parent | 33c297aacc0ce0f945198fbcdf48fbf2fd27d01b (diff) | |
download | git-03b86647722f11ccc321cd7279aa49b811d17cc2.tar.gz |
read-cache: new API write_locked_index instead of write_index/write_cache
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-scrap-cache-tree.c')
-rw-r--r-- | test-scrap-cache-tree.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test-scrap-cache-tree.c b/test-scrap-cache-tree.c index 4728013910..9ebcbca9d2 100644 --- a/test-scrap-cache-tree.c +++ b/test-scrap-cache-tree.c @@ -6,12 +6,11 @@ static struct lock_file index_lock; int main(int ac, char **av) { - int fd = hold_locked_index(&index_lock, 1); + hold_locked_index(&index_lock, 1); if (read_cache() < 0) die("unable to read index file"); active_cache_tree = NULL; - if (write_cache(fd, active_cache, active_nr) - || commit_lock_file(&index_lock)) + if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK)) die("unable to write index file"); return 0; } |