summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorAndreas Färber <andreas.faerber@web.de>2010-12-19 17:22:40 +0100
committerBlue Swirl <blauwirbel@gmail.com>2010-12-20 21:03:01 +0000
commitc910cf96dc8a2a1d3ee0a695979770d13538806f (patch)
tree6e982005a5f8d72004d53db23986b03049079c59 /hw
parentf5095c639fe2861b6401be6e26fa3ffb9d30eba4 (diff)
downloadqemu-c910cf96dc8a2a1d3ee0a695979770d13538806f.tar.gz
wdt_ib700: Fix accidental use of SoftFloat int64 type
softfloat.h's int64 type has least-width semantics. Since we're assigning an int64_t, use plain int64_t. v4: * Summary change. v3: * Split off. Signed-off-by: Andreas Färber <andreas.faerber@web.de> Acked-by: Richard W.M. Jones <rjones@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/wdt_ib700.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/wdt_ib700.c b/hw/wdt_ib700.c
index b6235ebe52..1248464ff5 100644
--- a/hw/wdt_ib700.c
+++ b/hw/wdt_ib700.c
@@ -53,7 +53,7 @@ static void ib700_write_enable_reg(void *vp, uint32_t addr, uint32_t data)
30, 28, 26, 24, 22, 20, 18, 16,
14, 12, 10, 8, 6, 4, 2, 0
};
- int64 timeout;
+ int64_t timeout;
ib700_debug("addr = %x, data = %x\n", addr, data);