mirror of https://github.com/xemu-project/xemu.git
Fix typo in cpus.c
filed -> failed Signed-off-by: Alexandre Raymond <cerbere@gmail.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
bf79d49982
commit
77bec68668
2
cpus.c
2
cpus.c
|
@ -297,7 +297,7 @@ static void qemu_event_increment(void)
|
||||||
|
|
||||||
/* EAGAIN is fine, a read must be pending. */
|
/* EAGAIN is fine, a read must be pending. */
|
||||||
if (ret < 0 && errno != EAGAIN) {
|
if (ret < 0 && errno != EAGAIN) {
|
||||||
fprintf(stderr, "qemu_event_increment: write() filed: %s\n",
|
fprintf(stderr, "qemu_event_increment: write() failed: %s\n",
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
exit (1);
|
exit (1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue