aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cfp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cfp.c b/cfp.c
index 9d0d5a7..47b4bbe 100644
--- a/cfp.c
+++ b/cfp.c
@@ -2,7 +2,7 @@
/* Function writes the contents of an opened file descriptor to stdout */
int cfp(FILE *fp, void *buf) {
- int br;
+ size_t br;
/* Use the buffer to read the file in blocks, writing each block to stdout
* as we go */