/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Merge branch 'rs/config-write-section-fix'
[git/git.git]
/
config.c
diff --git
a/config.c
b/config.c
index
731b9b1
..
676786a
100644
(file)
--- a/
config.c
+++ b/
config.c
@@
-2329,7
+2329,7
@@
static ssize_t write_section(int fd, const char *key)
struct strbuf sb = store_create_section(key);
ssize_t ret;
- ret = write_in_full(fd, sb.buf, sb.len)
== sb.len
;
+ ret = write_in_full(fd, sb.buf, sb.len);
strbuf_release(&sb);
return ret;