diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/ustat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/ustat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/ustat.c b/sysdeps/unix/sysv/linux/ustat.c index e1acbed..6ac30d8 100644 --- a/sysdeps/unix/sysv/linux/ustat.c +++ b/sysdeps/unix/sysv/linux/ustat.c @@ -33,7 +33,10 @@ ustat (dev_t dev, struct ustat *ubuf) /* We must convert the value to dev_t type used by the kernel. */ k_dev = dev & ((1ULL << 32) - 1); if (k_dev != dev) - return EOVERFLOW; + { + __set_errno (EINVAL); + return -1; + } return INLINE_SYSCALL (ustat, 2, (unsigned int) k_dev, CHECK_1 (ubuf)); } |