On Mon, Feb 15, 2010 at 08:05:24PM -0500, Matt Turner wrote: > Signed-off-by: Matt Turner <[email protected]> > --- > hw/xfree86/x86emu/validate.c | 2 +- > hw/xfree86/x86emu/x86emu/prim_x86_gcc.h | 6 +++--- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/hw/xfree86/x86emu/validate.c b/hw/xfree86/x86emu/validate.c > index 239f6c1..b8c4d12 100644 > --- a/hw/xfree86/x86emu/validate.c > +++ b/hw/xfree86/x86emu/validate.c > @@ -673,7 +673,7 @@ int main(int argc) > VAL_LONG_LONG_BINARY(cmp_long); > > VAL_BYTE_UNARY(daa_byte); > - VAL_BYTE_UNARY(das_byte); // Fails for 0x9A (out of range anyway) > + VAL_BYTE_UNARY(das_byte); /* Fails for 0x9A (out of range anyway) */ > > VAL_BYTE_UNARY(dec_byte); > VAL_WORD_UNARY(dec_word); > diff --git a/hw/xfree86/x86emu/x86emu/prim_x86_gcc.h > b/hw/xfree86/x86emu/x86emu/prim_x86_gcc.h > index 5530a3a..4c850a1 100644 > --- a/hw/xfree86/x86emu/x86emu/prim_x86_gcc.h > +++ b/hw/xfree86/x86emu/x86emu/prim_x86_gcc.h > @@ -61,7 +61,7 @@ static inline void hw_cpuid (u32 *a, u32 *b, u32 *c, u32 *d) > : "cc"); > } > > -#else // ! (__PIC__ && __i386__) > +#else /* ! (__PIC__ && __i386__) */ > > #define x86EMU_HAS_HW_CPUID 1 > static inline void hw_cpuid (u32 *a, u32 *b, u32 *c, u32 *d) > @@ -73,7 +73,7 @@ static inline void hw_cpuid (u32 *a, u32 *b, u32 *c, u32 *d) > : "cc"); > } > > -#endif // __PIC__ && __i386__ > +#endif /* __PIC__ && __i386__ */ > > > -#endif // __X86EMU_PRIM_X86_GCC_H > +#endif /* __X86EMU_PRIM_X86_GCC_H */ > -- > 1.6.4.4
Reviewed-by: Peter Hutterer <[email protected]> _______________________________________________ xorg-devel mailing list [email protected] http://lists.x.org/mailman/listinfo/xorg-devel
