]> git.proxmox.com Git - mirror_qemu.git/commit - exec.c
w64: Use uintptr_t in exec.c
authorStefan Weil <sw@weilnetz.de>
Thu, 12 Apr 2012 13:42:19 +0000 (15:42 +0200)
committerStefan Weil <sw@weilnetz.de>
Sun, 15 Apr 2012 19:25:17 +0000 (21:25 +0200)
commit8efe0ca83eb9c5f996acc7a37d522da5c542ec79
treedfd98d870b81f79311763f25431a9531a5f0a259
parent23ddbf08bfe3cf3e9d6993bd7918b6c4339ba2bb
w64: Use uintptr_t in exec.c

Replace all type casts to 'long' or 'unsigned long' by 'intptr_t' or 'uintptr_t'.

For type casts which are only used to extract the lower bits of an address
or to modify those bits, signedness does not matter. There I always use 'uintptr_t'.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
exec.c