diff options
| author | Elliott Hughes <enh@google.com> | 2015-01-24 22:08:19 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-01-24 22:08:20 +0000 |
| commit | 6e15edcca5f5b35221b33e9994c236f148cb3c38 (patch) | |
| tree | 81e1c889588ffb9361c0ad6356a7b75ad028d9f2 /libc | |
| parent | 59936a3b51474fc3216659f089ff6543ac31ab4e (diff) | |
| parent | d309877eeeb4b3d5daa089ea99fa4635852b0333 (diff) | |
| download | bionic-6e15edcca5f5b35221b33e9994c236f148cb3c38.zip bionic-6e15edcca5f5b35221b33e9994c236f148cb3c38.tar.gz bionic-6e15edcca5f5b35221b33e9994c236f148cb3c38.tar.bz2 | |
Merge "Say "Bad file descriptor" rather than "Bad file number"."
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/include/sys/_errdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/sys/_errdefs.h b/libc/include/sys/_errdefs.h index 3eeadf4..3c3c9d7 100644 --- a/libc/include/sys/_errdefs.h +++ b/libc/include/sys/_errdefs.h @@ -45,7 +45,7 @@ __BIONIC_ERRDEF( EIO , 5, "I/O error" ) __BIONIC_ERRDEF( ENXIO , 6, "No such device or address" ) __BIONIC_ERRDEF( E2BIG , 7, "Argument list too long" ) __BIONIC_ERRDEF( ENOEXEC , 8, "Exec format error" ) -__BIONIC_ERRDEF( EBADF , 9, "Bad file number" ) +__BIONIC_ERRDEF( EBADF , 9, "Bad file descriptor" ) __BIONIC_ERRDEF( ECHILD , 10, "No child processes" ) __BIONIC_ERRDEF( EAGAIN , 11, "Try again" ) __BIONIC_ERRDEF( ENOMEM , 12, "Out of memory" ) |
