commit 8c177d8d83cee081f23e10e60d0924072babfdb7 parent c7f2848a35bed670501f3dee74cc82279128f6ff Author: sin <sin@2f30.org> Date: Fri, 30 Jan 2015 16:47:36 +0000 fold: Be consistent and use size_t Diffstat:
M | fold.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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;