aboutsummaryrefslogtreecommitdiff
path: root/path.c
diff options
context:
space:
mode:
authorHeikki Orsila <heikki.orsila@iki.fi>2008-04-27 21:21:58 +0300
committerJunio C Hamano <gitster@pobox.com>2008-04-29 23:11:57 -0700
commit0104ca09e3abf48ab26fd0599c4b686fcff60ffc (patch)
tree42399527a842a09866b475db7f91dc82ed43b00f /path.c
parent9f1915d3935ea6e5e0a5cc38355a2dc30c4a811f (diff)
downloadgit-0104ca09e3abf48ab26fd0599c4b686fcff60ffc.tar.gz
git-0104ca09e3abf48ab26fd0599c4b686fcff60ffc.tar.xz
Make read_in_full() and write_in_full() consistent with xread() and xwrite()
xread() and xwrite() return ssize_t values as their native POSIX counterparts read(2) and write(2). To be consistent, read_in_full() and write_in_full() should also return ssize_t values. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
-rw-r--r--path.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/path.c b/path.c
index 2ae7cd997..b7c24a2aa 100644
--- a/path.c
+++ b/path.c
@@ -91,7 +91,8 @@ int validate_headref(const char *path)
struct stat st;
char *buf, buffer[256];
unsigned char sha1[20];
- int len, fd;
+ int fd;
+ ssize_t len;
if (lstat(path, &st) < 0)
return -1;