summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_open_fd.c
diff options
context:
space:
mode:
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>2012-10-10 05:48:42 +0900
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>2012-10-10 05:48:42 +0900
commitd37f94a25ca0ebd2a3c4f9dfdf290bb2da7b2624 (patch)
treed5c1002748836f7c73135a4fc447ab040a4230cf /libarchive/archive_read_open_fd.c
parent4e5dbfc53ada12827c01914abcc0dde1995ceca1 (diff)
downloadlibarchive-d37f94a25ca0ebd2a3c4f9dfdf290bb2da7b2624.tar.gz
Fix style and Make source files be somewhat readable.
Diffstat (limited to 'libarchive/archive_read_open_fd.c')
-rw-r--r--libarchive/archive_read_open_fd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libarchive/archive_read_open_fd.c b/libarchive/archive_read_open_fd.c
index 79728419..e0f95bf4 100644
--- a/libarchive/archive_read_open_fd.c
+++ b/libarchive/archive_read_open_fd.c
@@ -119,7 +119,8 @@ file_read(struct archive *a, void *client_data, const void **buff)
if (bytes_read < 0) {
if (errno == EINTR)
continue;
- archive_set_error(a, errno, "Error reading fd %d", mine->fd);
+ archive_set_error(a, errno, "Error reading fd %d",
+ mine->fd);
}
return (bytes_read);
}