Commit 8d3a2d4e 8d3a2d4ec8f99e76d5835ec793f8b094757b32f4 by Sergey Poznyakoff

(z_parse_args): change type of return_count

(mail_z): Change type of count to off_t
1 parent 041890e8
Showing 1 changed file with 2 additions and 2 deletions
......@@ -33,7 +33,7 @@
static int
z_parse_args(int argc, char **argv,
unsigned int *return_count, int *return_dir)
off_t *return_count, int *return_dir)
{
int count = 1;
int mul = 1;
......@@ -107,7 +107,7 @@ z_parse_args(int argc, char **argv,
int
mail_z (int argc, char **argv)
{
unsigned int count;
off_t count;
int dir;
unsigned int pagelines = util_screen_lines ();
......