* errno.cc (errmap): Map ERROR_FILE_INVALID to ENXIO.

This commit is contained in:
Corinna Vinschen 2001-04-03 18:20:38 +00:00
parent 45d061cccf
commit c196a1a26a
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Tue Apr 3 20:06:00 2001 Corinna Vinschen <corinna@vinschen.de>
* errno.cc (errmap): Map ERROR_FILE_INVALID to ENXIO.
Mon Apr 2 22:48:58 2001 Christopher Faylor <cgf@cygnus.com>
* cygrun.c (main): Fix compiler warning.

View File

@ -107,6 +107,7 @@ errmap[] =
X (NOT_READY, ENOMEDIUM),
X (DISK_FULL, ENOSPC),
X (NOACCESS, EFAULT),
X (FILE_INVALID, ENXIO),
{ 0, NULL, 0}
};