From 5edd86923aab84113d579833c5b487b47da44d43 Mon Sep 17 00:00:00 2001 From: Fotis Georgatos Date: Tue, 25 Jun 2019 00:13:52 +0200 Subject: [PATCH] typo: recieved -> received --- vm_decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm_decode.c b/vm_decode.c index f4818b0..a075a40 100644 --- a/vm_decode.c +++ b/vm_decode.c @@ -63,7 +63,7 @@ void outside_of_world(struct lilith* vm, unsigned_vm_register place, char* messa /* Deal with illegal instructions and their encodings */ void illegal_instruction(struct lilith* vm, struct Instruction* c) { - fprintf(stderr, "Invalid instruction was recieved at address:%08X\n", c->ip); + fprintf(stderr, "Invalid instruction was received at address:%08X\n", c->ip); fprintf(stderr, "After %lu instructions\n", performance_counter); fprintf(stderr, "Unable to execute the following instruction:\n\t%s\n", c->operation); c->invalid = true;