aboutsummaryrefslogtreecommitdiff
path: root/target-i386/helper.c
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-09 06:59:01 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-09 06:59:01 +0000
commit3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12 (patch)
treed9d3e5f4462517b179c20412b5ccccdab6fc660a /target-i386/helper.c
parent19f329ad7b4131471183801ccfa74295698fa62e (diff)
downloadqemu-3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12.zip
qemu-3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12.tar.gz
qemu-3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12.tar.bz2
Fix some functions declared () rather than (void) (Ian Jackson)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4029 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/helper.c')
-rw-r--r--target-i386/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c
index 7306cbd..c0fb78f 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -1670,7 +1670,7 @@ void helper_cmpxchg8b(void)
CC_SRC = eflags;
}
-void helper_single_step()
+void helper_single_step(void)
{
env->dr[6] |= 0x4000;
raise_exception(EXCP01_SSTP);