From: Ben Pfaff Date: Wed, 24 Nov 2004 00:51:43 +0000 (+0000) Subject: Fix spelling mistake in message. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96d95e6605de12945100bba503031ad8d56d470a;p=pintos-anon Fix spelling mistake in message. --- diff --git a/src/userprog/process.c b/src/userprog/process.c index 36c1bd0..78b3122 100644 --- a/src/userprog/process.c +++ b/src/userprog/process.c @@ -227,7 +227,7 @@ load (const char *filename, void (**eip) (void), void **esp) if (ehdr.e_machine != 3) LOAD_ERROR (("ELF executable is not x86")); if (ehdr.e_version != 1) - LOAD_ERROR (("ELF executable hasunknown version %d", + LOAD_ERROR (("ELF executable has unknown version %d", (int) ehdr.e_version)); if (ehdr.e_phentsize != sizeof (struct Elf32_Phdr)) LOAD_ERROR (("bad ELF program header size"));