From 323fcf192d691579a8a8b2ee73b1cd9f5a2566b4 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Tue, 12 Jan 2016 11:43:48 +0000 Subject: fpu: Replace uint8 typedef with uint8_t Replace the uint8 softfloat-specific typedef with uint8_t. This change was made with find include hw fpu target-* -name '*.[ch]' | xargs sed -i -e 's/\buint8\b/uint8_t/g' together with manual removal of the typedef definition and manual fixing of more erroneous uses found via test compilation. It turns out that the only code using this type is an accidental use where uint8_t was intended anyway... Signed-off-by: Peter Maydell --- migration/ram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'migration/ram.c') diff --git a/migration/ram.c b/migration/ram.c index 0490f005dd..73ed944a41 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -264,7 +264,7 @@ struct DecompressParam { QemuMutex mutex; QemuCond cond; void *des; - uint8 *compbuf; + uint8_t *compbuf; int len; }; typedef struct DecompressParam DecompressParam; -- cgit v1.2.3