summary refs log tree commit diff stats
path: root/savevm.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2010-03-13 11:36:09 +0000
committerBlue Swirl <blauwirbel@gmail.com>2010-03-13 11:36:09 +0000
commit090414a30c6c1d276eca48e76945f2cfcf0cccf9 (patch)
tree888d2b564a48a6f4e99deabc868d24df448ef03c /savevm.c
parent995bf0ca57e52f4991d7f90c7eb2bbf7bc3f3c44 (diff)
downloadfocaccia-qemu-090414a30c6c1d276eca48e76945f2cfcf0cccf9.tar.gz
focaccia-qemu-090414a30c6c1d276eca48e76945f2cfcf0cccf9.zip
Fix a typo in error message
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to '')
-rw-r--r--savevm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/savevm.c b/savevm.c
index a6e774b4d0..15477e9d82 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;
     }