From 8c177d8d83cee081f23e10e60d0924072babfdb7 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 30 Jan 2015 16:47:36 +0000 Subject: [PATCH] fold: Be consistent and use size_t --- fold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fold.c b/fold.c index 03286de..95783cf 100644 --- a/fold.c +++ b/fold.c @@ -53,7 +53,7 @@ foldline(const char *str, size_t width) } static void -fold(FILE *fp, long width) +fold(FILE *fp, size_t width) { char *buf = NULL; size_t size = 0;