From 65e7a911b58ac46da58f7c2c889b18b3710f3205 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 18 Jun 2012 19:25:01 -0600 Subject: [PATCH] fix incorrect 32-bit TargetThreadThunkTable value --- src/target.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target.h b/src/target.h index 51b2d6bdaf..071a4d743a 100644 --- a/src/target.h +++ b/src/target.h @@ -131,7 +131,7 @@ const unsigned TargetThreadVirtualCallTarget = 2180; const unsigned TargetThreadVirtualCallIndex = 2184; const unsigned TargetThreadHeapImage = 2188; const unsigned TargetThreadCodeImage = 2192; -const unsigned TargetThreadThunkTable = 2198; +const unsigned TargetThreadThunkTable = 2196; const unsigned TargetThreadStackLimit = 2220; const unsigned TargetClassFixedSize = 8;