From: Víctor Colombo Date: Tue, 6 Sep 2022 12:55:16 +0000 (-0300) Subject: target/ppc: Remove extra space from s128 field in ppc_vsr_t X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=676696f428202b8f2dcd34ec8ff84baa38a14e61;p=qemu.git target/ppc: Remove extra space from s128 field in ppc_vsr_t Very trivial rogue space removal. There are two spaces between Int128 and s128 in ppc_vsr_t struct, where it should be only one. Signed-off-by: Víctor Colombo Reviewed-by: Daniel Henrique Barboza Message-Id: <20220906125523.38765-2-victor.colombo@eldorado.org.br> Signed-off-by: Daniel Henrique Barboza --- diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index 4551d81b5f..602ea77914 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -246,7 +246,7 @@ typedef union _ppc_vsr_t { #ifdef CONFIG_INT128 __uint128_t u128; #endif - Int128 s128; + Int128 s128; } ppc_vsr_t; typedef ppc_vsr_t ppc_avr_t;