From 9de96ae6c6730ebcc4deb807ec24f8e01297588a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 17 Jun 2003 00:08:33 +0000 Subject: [PATCH] Changed new codes after suggestions from Ingo and Marcus. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3549 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/support/Errors.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/headers/os/support/Errors.h b/headers/os/support/Errors.h index c14e496c38..6b5ce3c069 100644 --- a/headers/os/support/Errors.h +++ b/headers/os/support/Errors.h @@ -210,9 +210,12 @@ enum { /*---- new error codes that can be mapped to POSIX errors ----*/ #define B_BUFFER_OVERFLOW EOVERFLOW #define B_NOT_SUPPORTED EOPNOTSUPP + /* there is also B_UNSUPPORTED - but it maps to a different error code; + * should we remove this one again? + */ #define B_TOO_MANY_ARGS E2BIG #define B_FILE_TOO_LARGE EFBIG -#define B_RESULT_TOO_LARGE ERANGE +#define B_RESULT_NOT_REPRESENTABLE ERANGE #define B_DEVICE_NOT_FOUND ENODEV /*-------------------------------------------------------------*/