From 2232c617535d11091ceb1afbb49093d881f2e0ee Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Wed, 6 Dec 1995 19:48:34 +0000 Subject: (condition_unimplies): Take address of (*impp)->next in assignment to IMPP on loop step instruction. --- libthreads/cprocs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libthreads') diff --git a/libthreads/cprocs.c b/libthreads/cprocs.c index 29d3acce..71a6a3ad 100644 --- a/libthreads/cprocs.c +++ b/libthreads/cprocs.c @@ -26,6 +26,9 @@ /* * HISTORY * $Log: cprocs.c,v $ + * Revision 1.7 1995/09/22 17:51:10 roland + * Include hurd/threadvar.h. + * * Revision 1.6 1995/08/30 15:57:47 mib * Repair typos. * @@ -809,7 +812,7 @@ condition_unimplies (condition_t implicator, condition_t implicatand) { struct cond_imp **impp; - for (impp = &implicator->implications; *impp; impp = (*impp)->next) + for (impp = &implicator->implications; *impp; impp = &(*impp)->next) { if ((*impp)->implicatand == implicatand) { -- cgit v1.2.3