summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-12-02 19:45:22 +0000
committerRoland McGrath <roland@gnu.org>2001-12-02 19:45:22 +0000
commit4f904363e44d029a09f86059f61ae3c3e7c6593c (patch)
tree7f41e4d281bb2d96f099bbf0704668b6e89fec98 /hurd
parent5ca3ec06e0d1dc5eb0def5697f914fcce3f1d774 (diff)
* 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>.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurd.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/hurd/hurd.h b/hurd/hurd.h
index 6ba73b25fd..44c0b99184 100644
--- a/hurd/hurd.h
+++ b/hurd/hurd.h
@@ -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;