From 6b6b4373b5cf96a16085767c7a0801be24b69aed Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Mon, 20 Nov 2006 16:42:03 +0000 Subject: Changes suggested by Bo Liu --- Process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Process.c b/Process.c index 9dba8a3a..ab38620a 100644 --- a/Process.c +++ b/Process.c @@ -148,8 +148,8 @@ Process* Process_clone(Process* this) { void Process_delete(Object* cast) { Process* this = (Process*) cast; - if (this->comm) free(this->comm); assert (this != NULL); + if (this->comm) free(this->comm); free(this); } @@ -186,7 +186,7 @@ void Process_sendSignal(Process* this, int signal) { #define ONE_M (ONE_K * ONE_K) #define ONE_G (ONE_M * ONE_K) -static void Process_printLargeNumber(Process* this, RichString *str, unsigned int number) { +static void Process_printLargeNumber(Process* this, RichString *str, unsigned long number) { char buffer[11]; int len; if(number >= (1000 * ONE_M)) { -- cgit v1.2.3