[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH ARM v4 05/12] mini-os: made off_t type signed
POSIX requires this. Signed-off-by: Thomas Leonard <talex5@xxxxxxxxx> --- 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 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |