mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
fix typo: delete redundant semicolon
Double semicolons should be single. Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
91a9ecefb6
commit
3a93113a00
15 changed files with 21 additions and 21 deletions
2
hw/ppc.c
2
hw/ppc.c
|
@ -1153,7 +1153,7 @@ void PPC_debug_write (void *opaque, uint32_t addr, uint32_t val)
|
|||
/* NVRAM helpers */
|
||||
static inline uint32_t nvram_read (nvram_t *nvram, uint32_t addr)
|
||||
{
|
||||
return (*nvram->read_fn)(nvram->opaque, addr);;
|
||||
return (*nvram->read_fn)(nvram->opaque, addr);
|
||||
}
|
||||
|
||||
static inline void nvram_write (nvram_t *nvram, uint32_t addr, uint32_t val)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue