Fix incorrectly written call to `critical_section_hook'.
authorChris Hanson <org/chris-hanson/cph>
Wed, 5 Jul 1989 21:36:36 +0000 (21:36 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 5 Jul 1989 21:36:36 +0000 (21:36 +0000)
v7/src/microcode/intrpt.h

index 6347d3a24b343e9793b17ca43acae142144ed171..a4f3e47db56e86b485bf442e2f7504c610600336 100644 (file)
@@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
 
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/intrpt.h,v 1.5 1989/03/27 23:15:34 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/intrpt.h,v 1.6 1989/07/05 21:36:36 cph Rel $
  *
  * Interrupt manipulation utilities.
  */
@@ -144,7 +144,7 @@ extern void (*critical_section_hook)();
       name = critical_section_name;                                    \
       critical_section_hook_p = false;                                 \
       critical_section_name = ((char *) NULL);                         \
-      critical_section_hook (name);                                    \
+      (*critical_section_hook) (name);                                 \
       /*NOTREACHED*/                                                   \
     }                                                                  \
   }                                                                    \