diff options
Diffstat (limited to 'lib/ext2fs/llseek.c')
-rw-r--r-- | lib/ext2fs/llseek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ext2fs/llseek.c b/lib/ext2fs/llseek.c index 46b82e70..9829444c 100644 --- a/lib/ext2fs/llseek.c +++ b/lib/ext2fs/llseek.c @@ -114,7 +114,7 @@ ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) { if ((sizeof(off_t) < sizeof(ext2_loff_t)) && (offset >= ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))) { - errno = EXT2_INVALID_ARGUMENT; + errno = EXT2_ET_INVALID_ARGUMENT; return -1; } return lseek (fd, (off_t) offset, origin); |