From 958397c44b1dc388ad23bf6b8599062c66bb142a Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 27 Mar 2012 14:45:17 +0200 Subject: fix comment --- userprog/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'userprog/process.c') diff --git a/userprog/process.c b/userprog/process.c index f5b7431..bd4f6b0 100644 --- a/userprog/process.c +++ b/userprog/process.c @@ -622,7 +622,7 @@ setup_stack (void **esp, const char *args) stack_total = PHYS_BASE - *esp; printf("stack_total=%u\n", stack_total); printf("unaligned=%p off=%d\n", *esp, PHYS_BASE - *esp); - *esp -= (4 - stack_total % sizeof(char *)); /* by thomas */ + *esp -= (4 - stack_total % sizeof(char *)); /* thanks to thomas */ printf("aligned=%p off=%d\n", *esp, PHYS_BASE - *esp); /* Currently we assume that 'argc = 0' */ -- cgit v1.2.3