From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/6624 Path: news.gmane.org!not-for-mail From: Jens Gustedt Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 4/4] fix a minor bug for the definition of WINT_MIN Date: Tue, 25 Nov 2014 15:50:17 +0100 Message-ID: <1416926909.16006.926.camel@eris.loria.fr> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1416927028 1618 80.91.229.3 (25 Nov 2014 14:50:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Nov 2014 14:50:28 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-6637-gllmg-musl=m.gmane.org@lists.openwall.com Tue Nov 25 15:50:24 2014 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1XtHRf-0005VQ-4Y for gllmg-musl@m.gmane.org; Tue, 25 Nov 2014 15:50:23 +0100 Original-Received: (qmail 3489 invoked by uid 550); 25 Nov 2014 14:50:19 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 3463 invoked from network); 25 Nov 2014 14:50:18 -0000 X-IronPort-AV: E=Sophos;i="5.07,455,1413237600"; d="scan'208";a="109493452" Resent-From: Jens Gustedt Resent-To: musl@lists.openwall.com X-Mailer: Evolution 3.4.4-3 Xref: news.gmane.org gmane.linux.lib.musl.general:6624 Archived-At: This must be an unsigned value. --- include/stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdint.h b/include/stdint.h index 8b91163..8b81ca0 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -78,7 +78,7 @@ typedef uint64_t uint_least64_t; #define INTMAX_MAX INT64_MAX #define UINTMAX_MAX UINT64_MAX -#define WINT_MIN 0 +#define WINT_MIN (+_UINTEGER_C(uint32_t, 0)) #define WINT_MAX UINT32_MAX #if L'\0'-1 > 0 -- 1.9.1