From e6bc0dccbcbd3b8e8fb97500fc8b24d328645799 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 13 Apr 1999 01:11:46 +0000 Subject: (main): Declare out_dev to be of type dev_t, not `int'. Declare out_ino to be of type ino_t, not `int'. --- src/cat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/cat.c b/src/cat.c index 0899cb79f..62789d60e 100644 --- a/src/cat.c +++ b/src/cat.c @@ -486,10 +486,10 @@ main (int argc, char **argv) int argind; /* Device number of the output (file or whatever). */ - int out_dev; + dev_t out_dev; /* I-node number of the output. */ - int out_ino; + ino_t out_ino; /* Nonzero if the output file should not be the same as any input file. */ int check_redirection = 1; -- cgit v1.2.3-54-g00ecf