projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
995bf0c
)
Fix a typo in error message
author
Blue Swirl
<blauwirbel@gmail.com>
Sat, 13 Mar 2010 11:36:09 +0000
(11:36 +0000)
committer
Blue Swirl
<blauwirbel@gmail.com>
Sat, 13 Mar 2010 11:36:09 +0000
(11:36 +0000)
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
savevm.c
patch
|
blob
|
history
diff --git
a/savevm.c
b/savevm.c
index a6e774b4d0f297505e3074216da04011db3a40e3..15477e9d82e5ffd60901d5755def0febfb12f449 100644
(file)
--- 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_f
d
open: Argument validity check failed\n");
+ fprintf(stderr, "qemu_fopen: Argument validity check failed\n");
return NULL;
}