From: Jim Meyering Date: Tue, 13 Apr 1999 01:11:46 +0000 (+0000) Subject: (main): Declare out_dev to be of type dev_t, not `int'. X-Git-Tag: TEXTUTILS-1_22j~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6bc0dccbcbd3b8e8fb97500fc8b24d328645799;p=thirdparty%2Fcoreutils.git (main): Declare out_dev to be of type dev_t, not `int'. Declare out_ino to be of type ino_t, not `int'. --- diff --git a/src/cat.c b/src/cat.c index 0899cb79fd..62789d60e6 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;