Stefan Reinauer ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1361
-gerrit commit 133271d603ea015e4ab80d3aa99e57eec9b8b8c2 Author: Stefan Reinauer <[email protected]> Date: Thu Jul 26 15:04:24 2012 -0700 x86emu: Use NULL instead of 0 when assigning pointer Change-Id: Ie79b9aa79d45dd10c2e5be7f58eed970c243060a Signed-off-by: Stefan Reinauer <[email protected]> --- src/devices/oprom/x86emu/ops2.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/devices/oprom/x86emu/ops2.c b/src/devices/oprom/x86emu/ops2.c index edad6f3..4000bc3 100644 --- a/src/devices/oprom/x86emu/ops2.c +++ b/src/devices/oprom/x86emu/ops2.c @@ -336,7 +336,7 @@ static void x86emuOp2_set_byte(u8 op2) int mod, rl, rh; uint destoffset; u8 *destreg; - const char *X86EMU_DEBUG_ONLY(name) = 0; + const char *X86EMU_DEBUG_ONLY(name) = NULL; int cond = 0; START_OF_INSTR(); -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

