From 66edf3f00c62aaa59ccfc00bdde573bfce267a85 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 29 Aug 2004 06:54:21 +0000 Subject: [PATCH] Make intr_stubs const. --- src/threads/intr-stubs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/threads/intr-stubs.h b/src/threads/intr-stubs.h index 5ff9164..b1f5039 100644 --- a/src/threads/intr-stubs.h +++ b/src/threads/intr-stubs.h @@ -1,7 +1,7 @@ #ifndef HEADER_INTR_STUBS_H #define HEADER_INTR_STUBS_H -extern void (*intr_stubs[256]) (void); +extern void (*const intr_stubs[256]) (void); void intr_entry (void); void intr_exit (void); -- 2.30.2