From f7adc39e3793114e989f0a830af966230cd2c83d Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 24 Jul 2011 00:54:36 -0400 Subject: const correctness on function pointer --- src/time/clock_gettime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/time/clock_gettime.c b/src/time/clock_gettime.c index c27c9e9e..bb977e28 100644 --- a/src/time/clock_gettime.c +++ b/src/time/clock_gettime.c @@ -5,7 +5,7 @@ #include "libc.h" int __vdso_clock_gettime(clockid_t, struct timespec *) __attribute__((weak)); -static int (*cgt)(clockid_t, struct timespec *) = __vdso_clock_gettime; +static int (*const cgt)(clockid_t, struct timespec *) = __vdso_clock_gettime; int __clock_gettime(clockid_t clk, struct timespec *ts) { -- cgit v1.2.1