From: Jack Lange Date: Sat, 7 Feb 2009 20:45:52 +0000 (-0600) Subject: error string fix X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=ab3bd3b89ba77dbd626267e5917a72836b3772df;p=palacios.git error string fix --- diff --git a/palacios/src/palacios/vmm_emulator.c b/palacios/src/palacios/vmm_emulator.c index 9d166c4..82dc56c 100644 --- a/palacios/src/palacios/vmm_emulator.c +++ b/palacios/src/palacios/vmm_emulator.c @@ -213,7 +213,7 @@ int v3_emulate_write_op(struct guest_info * info, addr_t write_gva, addr_t write } if (write_fn(write_gpa, (void *)dst_addr, op_len, priv_data) != op_len) { - PrintError("Did not fully read hooked data\n"); + PrintError("Did not fully write hooked data\n"); return -1; }