From ecb53eab4b63a777c189f880e7f88ebbe0e8101b Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 2 Aug 2012 15:45:04 -0700 Subject: [PATCH] Fix a ENOTUP/ENOTSUP typo. Change-Id: Ifa347a09a2aa1f505965ae7c1383fd0caf95793c --- libc/include/errno.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/errno.h b/libc/include/errno.h index 2b2685af4..e1b15c04d 100644 --- a/libc/include/errno.h +++ b/libc/include/errno.h @@ -36,7 +36,7 @@ __BEGIN_DECLS /* on Linux, ENOTSUP and EOPNOTSUPP are defined as the same error code * even if 1000.3 states that they should be different */ -#ifndef ENOTUP +#ifndef ENOTSUP #define ENOTSUP EOPNOTSUPP #endif