diff options
author | Jim Meyering <jim@meyering.net> | 1999-04-13 01:11:46 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-04-13 01:11:46 +0000 |
commit | e6bc0dccbcbd3b8e8fb97500fc8b24d328645799 (patch) | |
tree | 0209ba9e7a1fa8fe031774ac5ba2aa8460852fc6 | |
parent | b6d265e347a53be00d84f23c236e424b3620ba10 (diff) | |
download | coreutils-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'.
-rw-r--r-- | src/cat.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |