projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18b4aee
)
mini-os: made off_t type signed
author
Thomas Leonard
<talex5@gmail.com>
Thu, 26 Jun 2014 11:28:22 +0000
(12:28 +0100)
committer
Ian Campbell
<ian.campbell@citrix.com>
Fri, 27 Jun 2014 12:38:34 +0000
(13:38 +0100)
POSIX requires this.
Signed-off-by: Thomas Leonard <talex5@gmail.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
extras/mini-os/include/types.h
patch
|
blob
|
history
diff --git
a/extras/mini-os/include/types.h
b/extras/mini-os/include/types.h
index 6640ede52b6c40a69b6ae11e2363896b49c63132..de356e87db97bf50c9f66b52349078351fee1a3f 100644
(file)
--- 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
u
int64_t off_t;
+typedef
int64_t off_t;
#endif
typedef intptr_t ptrdiff_t;