diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-01 20:35:21 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-01 20:35:21 +0000 |
commit | 0feef828e182f5b644d1d33a9ff3c54fc326b740 (patch) | |
tree | f94efc53b18a150b8f120b82edd7b27f6935b92e /target-mips/op.c | |
parent | 3a3f24fce80c1516fe03e0d4c73505ef6dbaa21c (diff) |
Fix bad data type.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2284 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op.c')
-rw-r--r-- | target-mips/op.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index 27fb3ef59a..0550d27869 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -1330,7 +1330,7 @@ void op_mtc0_count (void) void op_mtc0_entryhi (void) { - uint32_t old, val; + target_ulong old, val; /* 1k pages not implemented */ /* Ignore MIPS64 TLB for now */ |