diff options
author | Stephan Beyer <s-beyer@gmx.net> | 2008-08-02 03:51:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-01 21:10:40 -0700 |
commit | 1e5f7add985dbccc0e811dbb6eff5047d8843118 (patch) | |
tree | 87006a11e35e0ed0611458847f8aa26cc5c0fdd3 | |
parent | bfce5087ee01fdead5cdc52180c8eef22adbbd71 (diff) | |
download | git-1e5f7add985dbccc0e811dbb6eff5047d8843118.tar.gz git-1e5f7add985dbccc0e811dbb6eff5047d8843118.tar.xz |
builtin-revert.c: typofix
Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-revert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-revert.c b/builtin-revert.c index 0270f9b85..bde28b2c4 100644 --- a/builtin-revert.c +++ b/builtin-revert.c @@ -180,7 +180,7 @@ static void set_author_ident_env(const char *message) email++; timestamp = strchr(email, '>'); if (!timestamp) - die ("Could not extract author email from %s", + die ("Could not extract author time from %s", sha1_to_hex(commit->object.sha1)); *timestamp = '\0'; for (timestamp++; *timestamp && isspace(*timestamp); |