From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Leonard Subject: [PATCH ARM v5 05/20] mini-os: made off_t type signed Date: Thu, 26 Jun 2014 12:28:22 +0100 Message-ID: <1403782117-15125-6-git-send-email-talex5@gmail.com> References: <1403782117-15125-1-git-send-email-talex5@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1X07rL-0004Cw-Uo for xen-devel@lists.xenproject.org; Thu, 26 Jun 2014 11:28:56 +0000 Received: by mail-we0-f169.google.com with SMTP id t60so3516840wes.14 for ; Thu, 26 Jun 2014 04:28:54 -0700 (PDT) In-Reply-To: <1403782117-15125-1-git-send-email-talex5@gmail.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Thomas Leonard , Dave.Scott@eu.citrix.com, anil@recoil.org, stefano.stabellini@eu.citrix.com, samuel.thibault@ens-lyon.org List-Id: xen-devel@lists.xenproject.org POSIX requires this. Signed-off-by: Thomas Leonard Acked-by: Ian Campbell Acked-by: Samuel Thibault --- extras/mini-os/include/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/mini-os/include/types.h b/extras/mini-os/include/types.h index 6640ede..de356e8 100644 --- a/extras/mini-os/include/types.h +++ b/extras/mini-os/include/types.h @@ -73,7 +73,7 @@ typedef unsigned long uint64_t; #endif typedef uint64_t uintmax_t; typedef int64_t intmax_t; -typedef uint64_t off_t; +typedef int64_t off_t; #endif typedef intptr_t ptrdiff_t; -- 2.0.0