diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-23 22:27:03 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-23 22:27:03 -0800 |
commit | 816c02ce8ecddce065e83db9f4ecb78f6b0e23dc (patch) | |
tree | b85fa8225e982f67dd4e9d516b92c3f03a1f99bc /refs.c | |
parent | 1d3d03bbeaaf55844868affc96231930aae792e6 (diff) | |
parent | 7bd1527d2d8c80a6e9a0f8583082a5aee5428c68 (diff) | |
download | git-816c02ce8ecddce065e83db9f4ecb78f6b0e23dc.tar.gz |
Merge fixes early for next maint series.
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -268,7 +268,7 @@ static int write_ref_file(const char *filename, char term = '\n'; if (write(fd, hex, 40) < 40 || write(fd, &term, 1) < 1) { - error("Couldn't write %s\n", filename); + error("Couldn't write %s", filename); close(fd); return -1; } |