commit | cb97cc9fef60ea2ff1ce51cf575314c04488dbfd | [log] [tgz] |
---|---|---|
author | Brandon Casey <casey@nrlssc.navy.mil> | Fri Jan 04 19:11:37 2008 -0600 |
committer | Junio C Hamano <gitster@pobox.com> | Fri Jan 04 17:22:24 2008 -0800 |
tree | 5e88f0af614dacc33029fd983cab67f4dfc91176 | |
parent | 552cecc21447efe9d5f9a86d55b5e428d56a0c53 [diff] [blame] |
builtin-reflog.c: fix typo that accesses an unset variable Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/builtin-reflog.c b/builtin-reflog.c index f422693..5e54989 100644 --- a/builtin-reflog.c +++ b/builtin-reflog.c
@@ -394,7 +394,7 @@ int recno; if (!spec) { - status |= error("Not a reflog: %s", ref); + status |= error("Not a reflog: %s", argv[i]); continue; }