From 79f34e549a24b763955e22267eaf01b893ba65d5 Mon Sep 17 00:00:00 2001 From: Mark Dapoz Date: Mon, 14 May 2001 23:26:34 +0000 Subject: [PATCH] aix42-pthread-self-return-needs-cast-20010514 To compile on AIX 4.2 on PowerPC --- src/rx/rx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rx/rx.c b/src/rx/rx.c index 94fe77467..43fa1665c 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -666,7 +666,7 @@ void rx_StartServer(donateMe) char name[32]; #ifdef AFS_PTHREAD_ENV pid_t pid; - pid = pthread_self(); + pid = (pid_t) pthread_self(); #else /* AFS_PTHREAD_ENV */ PROCESS pid; code = LWP_CurrentProcess(&pid); -- 2.39.5