diff options
Diffstat (limited to 'builtin-bundle.c')
-rw-r--r-- | builtin-bundle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-bundle.c b/builtin-bundle.c index d1635a0a6b..306ad29597 100644 --- a/builtin-bundle.c +++ b/builtin-bundle.c @@ -48,7 +48,7 @@ static int read_string(int fd, char *buffer, int size) { int i; for (i = 0; i < size - 1; i++) { - int count = xread(fd, buffer + i, 1); + ssize_t count = xread(fd, buffer + i, 1); if (count < 0) return error("Read error: %s", strerror(errno)); if (count == 0) { |