Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5726117A20 for ; Wed, 22 Apr 2015 17:49:46 +0000 (UTC) Received: (qmail 35269 invoked by uid 500); 22 Apr 2015 17:49:46 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 35244 invoked by uid 500); 22 Apr 2015 17:49:46 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 35235 invoked by uid 99); 22 Apr 2015 17:49:46 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Apr 2015 17:49:46 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 19618E00BA; Wed, 22 Apr 2015 17:49:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: astitcher@apache.org To: commits@qpid.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: qpid-proton git commit: NO-JIRA: Even better way to get an all binary 1s unsigned (!) Date: Wed, 22 Apr 2015 17:49:46 +0000 (UTC) Repository: qpid-proton Updated Branches: refs/heads/master fd26ec66b -> 8000c4797 NO-JIRA: Even better way to get an all binary 1s unsigned (!) Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/8000c479 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/8000c479 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/8000c479 Branch: refs/heads/master Commit: 8000c4797ea971f89df5f1aadab835f0375df739 Parents: fd26ec6 Author: Andrew Stitcher Authored: Wed Apr 22 13:48:01 2015 -0400 Committer: Andrew Stitcher Committed: Wed Apr 22 13:48:57 2015 -0400 ---------------------------------------------------------------------- proton-c/include/proton/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/8000c479/proton-c/include/proton/types.h ---------------------------------------------------------------------- diff --git a/proton-c/include/proton/types.h b/proton-c/include/proton/types.h index f516b13..9e0ea18 100644 --- a/proton-c/include/proton/types.h +++ b/proton-c/include/proton/types.h @@ -45,7 +45,7 @@ extern "C" { typedef int32_t pn_sequence_t; typedef uint32_t pn_millis_t; -#define PN_MILLIS_MAX (~0) +#define PN_MILLIS_MAX (~0U) typedef uint32_t pn_seconds_t; typedef int64_t pn_timestamp_t; typedef uint32_t pn_char_t; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org