]> git.proxmox.com Git - qemu.git/commit
spapr: Fix compiler warnings for some versions of gcc
authorStefan Weil <sw@weilnetz.de>
Sat, 29 Jun 2013 13:47:26 +0000 (15:47 +0200)
committerAlexander Graf <agraf@suse.de>
Thu, 11 Jul 2013 16:51:23 +0000 (18:51 +0200)
commit9a39970df783cf8317e7dbf00a8af184ce868b1b
tree26919633ea10e272a17b1fc0dc806d09434685ec
parent7162bdea75e9f63afdd2cacfe26ee4b472a59362
spapr: Fix compiler warnings for some versions of gcc

i686-w64-mingw32-gcc (GCC) 4.6.3 from Debian wheezy reports these warnings:

hw/ppc/spapr_hcall.c:188:1: warning:
 control reaches end of non-void function [-Wreturn-type]

hw/ppc/spapr_pci.c:454:1: warning:
 control reaches end of non-void function [-Wreturn-type]

Both warnings are fixed by using g_assert_not_reached instead of assert.
A second line with assert(0) in spapr_pci.c which did not raise a compiler
warning was modified, too, because g_assert_not_reached documents the
purpose of that statement and is not removed in release builds.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Alexander Graf <agraf@suse.de>
hw/ppc/spapr_hcall.c
hw/ppc/spapr_pci.c