diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-03-29 02:42:58 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-03-29 02:42:58 +0200 |
commit | faf752693abd0a891a9a47a2d398353cc59ee93a (patch) | |
tree | c68e63b1a514e4a8fe334cc86a8cf36fe3571673 /builtin | |
parent | imap-send: suppress warning about cleartext password with CRAM-MD5 (diff) | |
parent | t9350: fix careless use of "cd" (diff) | |
download | git-faf752693abd0a891a9a47a2d398353cc59ee93a.tar.xz git-faf752693abd0a891a9a47a2d398353cc59ee93a.zip |
Merge branch 'maint'
* maint:
t9350: fix careless use of "cd"
difftool: Fix '--gui' when diff.guitool is unconfigured
fast-export: don't segfault when marks file cannot be opened
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/fast-export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/fast-export.c b/builtin/fast-export.c index b0a4029c94..c6dd71a7bc 100644 --- a/builtin/fast-export.c +++ b/builtin/fast-export.c @@ -503,7 +503,7 @@ static void export_marks(char *file) f = fopen(file, "w"); if (!f) - error("Unable to open marks file %s for writing.", file); + die_errno("Unable to open marks file %s for writing.", file); for (i = 0; i < idnums.size; i++) { if (deco->base && deco->base->type == 1) { |