fold: Be consistent and use size_t

This commit is contained in:
sin 2015-01-30 16:47:36 +00:00
parent c7f2848a35
commit 8c177d8d83
1 changed files with 1 additions and 1 deletions

2
fold.c
View File

@ -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;