From: Ben Gras Date: Tue, 20 Jun 2006 09:51:49 +0000 (+0000) Subject: Use endpoint_t type X-Git-Tag: v3.1.3~321 X-Git-Url: http://zhaoyanbai.com/repos/cppcheck-error.log?a=commitdiff_plain;h=28950e61046c5b056d2ae71c31a28a6f47b7d12f;p=minix.git Use endpoint_t type --- diff --git a/kernel/proc.h b/kernel/proc.h index 728190ceb..f86453e2e 100755 --- a/kernel/proc.h +++ b/kernel/proc.h @@ -52,7 +52,7 @@ struct proc { char p_name[P_NAME_LEN]; /* name of the process, including \0 */ - int p_endpoint; /* endpoint number, generation-aware */ + endpoint_t p_endpoint; /* endpoint number, generation-aware */ #if DEBUG_SCHED_CHECK int p_ready, p_found;