diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-12-06 19:48:34 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-12-06 19:48:34 +0000 |
commit | 2232c617535d11091ceb1afbb49093d881f2e0ee (patch) | |
tree | 16c5cd34a5c51531d4358e937059f9b7297ee761 /libthreads | |
parent | dbd8ad93e525c29767467795730b1fa4d918d7e5 (diff) |
(condition_unimplies): Take address of (*impp)->next in assignment to
IMPP on loop step instruction.
Diffstat (limited to 'libthreads')
-rw-r--r-- | libthreads/cprocs.c | 5 |
1 files changed, 4 insertions, 1 deletions
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) { |