Hi,

This fix set_error return value typo.

Pierre.
Index: darwin-user/main.c
===================================================================
RCS file: /sources/qemu/qemu/darwin-user/main.c,v
retrieving revision 1.1
diff -u -r1.1 main.c
--- darwin-user/main.c  18 Jan 2007 20:06:33 -0000      1.1
+++ darwin-user/main.c  24 Jan 2007 19:48:53 -0000
@@ -478,7 +478,7 @@
 }
 
 /* ABI convention: after a syscall if there was an error the CF flag is set */
-static inline set_error(CPUX86State *env, int ret)
+static inline void set_error(CPUX86State *env, int ret)
 {
     if(ret<0)
         env->eflags = env->eflags | 0x1;
_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to