aboutsummaryrefslogtreecommitdiff
path: root/miscutils/hdparm.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-19 09:48:17 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-19 09:48:17 +0000
commit5e25ddb7d369b6785ec3aaa96cbc0521c22aeb0d (patch)
tree44b7cf5fb706b0816dd4525782ca8c37d07c2f43 /miscutils/hdparm.c
parent636a1f85e89432601c59cdc3239fc867b4adf051 (diff)
downloadbusybox-w32-5e25ddb7d369b6785ec3aaa96cbc0521c22aeb0d.tar.gz
busybox-w32-5e25ddb7d369b6785ec3aaa96cbc0521c22aeb0d.tar.bz2
busybox-w32-5e25ddb7d369b6785ec3aaa96cbc0521c22aeb0d.zip
- use STD*_FILENO some more. No object-code changes
Diffstat (limited to 'miscutils/hdparm.c')
-rw-r--r--miscutils/hdparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c
index 7afa9ff86..8c0e47334 100644
--- a/miscutils/hdparm.c
+++ b/miscutils/hdparm.c
@@ -1924,7 +1924,7 @@ static void identify_from_stdin(void)
1924 unsigned char *b = (unsigned char *)buf; 1924 unsigned char *b = (unsigned char *)buf;
1925 int i; 1925 int i;
1926 1926
1927 xread(0, buf, 1280); 1927 xread(STDIN_FILENO, buf, 1280);
1928 1928
1929 // Convert the newline-separated hex data into an identify block. 1929 // Convert the newline-separated hex data into an identify block.
1930 1930