summaryrefslogtreecommitdiff
path: root/src/cat.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-04-13 01:11:46 +0000
committerJim Meyering <jim@meyering.net>1999-04-13 01:11:46 +0000
commite6bc0dccbcbd3b8e8fb97500fc8b24d328645799 (patch)
tree0209ba9e7a1fa8fe031774ac5ba2aa8460852fc6 /src/cat.c
parentb6d265e347a53be00d84f23c236e424b3620ba10 (diff)
downloadcoreutils-e6bc0dccbcbd3b8e8fb97500fc8b24d328645799.tar.xz
(main): Declare out_dev to be of type dev_t, not `int'.
Declare out_ino to be of type ino_t, not `int'.
Diffstat (limited to 'src/cat.c')
-rw-r--r--src/cat.c4
1 files changed, 2 insertions, 2 deletions
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;