diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-08-30 16:56:48 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-30 20:59:04 -0700 |
commit | 4e83ab3e8d43beaa7a2097a2f34d3b9eb67525bb (patch) | |
tree | 703de58557d41df87aef5c8d784922c6c563ede2 /builtin/reset.c | |
parent | 82a0672f8ed4c63bf8420cd55f7307d40b9a6594 (diff) | |
download | git-4e83ab3e8d43beaa7a2097a2f34d3b9eb67525bb.tar.gz |
reset: trivial style cleanup
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/reset.c')
-rw-r--r-- | builtin/reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reset.c b/builtin/reset.c index 225e3f141e..7e65934a82 100644 --- a/builtin/reset.c +++ b/builtin/reset.c @@ -323,7 +323,7 @@ int cmd_reset(int argc, const char **argv, const char *prefix) die_if_unmerged_cache(reset_type); if (reset_type != SOFT) { - struct lock_file *lock = xcalloc(1, sizeof(struct lock_file)); + struct lock_file *lock = xcalloc(1, sizeof(*lock)); int newfd = hold_locked_index(lock, 1); if (reset_type == MIXED) { int flags = quiet ? REFRESH_QUIET : REFRESH_IN_PORCELAIN; |