[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] mini-os: made off_t type signed
commit e6e9178431725c369aeac117badc546edf18ab07 Author: Thomas Leonard <talex5@xxxxxxxxx> AuthorDate: Thu Jun 26 12:28:22 2014 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Fri Jun 27 13:38:34 2014 +0100 mini-os: made off_t type signed POSIX requires this. Signed-off-by: Thomas Leonard <talex5@xxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> --- extras/mini-os/include/types.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |