1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

* hurd/hurd.h (__hurd_fail): Add `break;' to silence new gcc-3 warning.

Reported by Jeff Bailey <jbailey@nisa.net>.

	Reported by Jeff Bailey <jbailey@nisa.net>.
This commit is contained in:
Roland McGrath
2001-12-02 19:45:22 +00:00
parent 5ca3ec06e0
commit 4f904363e4
2 changed files with 7 additions and 0 deletions

View File

@@ -61,13 +61,16 @@ __hurd_fail (error_t err)
case KERN_NO_SPACE:
err = ENOMEM;
break;
case KERN_INVALID_ARGUMENT:
err = EINVAL;
break;
case 0:
return 0;
default:
break;
}
errno = err;