From: Blue Swirl Date: Sat, 13 Mar 2010 11:36:09 +0000 (+0000) Subject: Fix a typo in error message X-Git-Tag: v0.13.0-rc0~1105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=090414a30c6c1d276eca48e76945f2cfcf0cccf9;p=thirdparty%2Fqemu.git Fix a typo in error message Signed-off-by: Blue Swirl --- diff --git a/savevm.c b/savevm.c index a6e774b4d0f..15477e9d82e 100644 --- a/savevm.c +++ b/savevm.c @@ -356,7 +356,7 @@ QEMUFile *qemu_fopen(const char *filename, const char *mode) if (mode == NULL || (mode[0] != 'r' && mode[0] != 'w') || mode[1] != 'b' || mode[2] != 0) { - fprintf(stderr, "qemu_fdopen: Argument validity check failed\n"); + fprintf(stderr, "qemu_fopen: Argument validity check failed\n"); return NULL; }