From: Thomas Leonard Date: Thu, 26 Jun 2014 11:28:22 +0000 (+0100) Subject: mini-os: made off_t type signed X-Git-Tag: 4.5.0-rc1~624 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e6e9178431725c369aeac117badc546edf18ab07;p=xen.git mini-os: made off_t type signed POSIX requires this. Signed-off-by: Thomas Leonard Acked-by: Ian Campbell Acked-by: Samuel Thibault --- diff --git a/extras/mini-os/include/types.h b/extras/mini-os/include/types.h index 6640ede52b..de356e87db 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;