summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-12-14 06:05:15 +0000
committermidipix <writeonce@midipix.org>2016-12-15 01:47:51 -0500
commit604059ced974f5ed17d9959bb5d3962900649121 (patch)
tree6e4c277c6d888477080cc615b0aeb054e17d6def
parent3e41b3adf390d49fcbe5c9eb5c1823c8eaad576d (diff)
downloadntapi-604059ced974f5ed17d9959bb5d3962900649121.tar.bz2
ntapi-604059ced974f5ed17d9959bb5d3962900649121.tar.xz
nt_thread.h: fix sign and size of NT_CONTEXT_JUST_EVERYTHING.
-rw-r--r--include/ntapi/nt_thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ntapi/nt_thread.h b/include/ntapi/nt_thread.h
index 0c931b1..3f67129 100644
--- a/include/ntapi/nt_thread.h
+++ b/include/ntapi/nt_thread.h
@@ -74,7 +74,7 @@ typedef enum _nt_exception_disposition {
/* thread context */
-#define NT_CONTEXT_JUST_EVERYTHING (intptr_t)-1
+#define NT_CONTEXT_JUST_EVERYTHING (uint32_t)-1
/* source mark: arch-specific code: begin */
#if (__SIZEOF_POINTER__ == 4)