From a68b0d31a37a86785b3dbeeee3fad96ee71fadcd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 2 Oct 1996 01:40:17 +0000 Subject: update from main archive 961001 --- sysdeps/gnu/errlist.awk | 2 +- sysdeps/gnu/errlist.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/gnu') diff --git a/sysdeps/gnu/errlist.awk b/sysdeps/gnu/errlist.awk index c68e70df9a..a640fe5a11 100644 --- a/sysdeps/gnu/errlist.awk +++ b/sysdeps/gnu/errlist.awk @@ -32,7 +32,7 @@ BEGIN { print ""; print "#include "; print ""; - print "const char *_sys_errlist[] ="; + print "const char *const _sys_errlist[] ="; print " {"; print " [0] = N_(\"Success\")," } diff --git a/sysdeps/gnu/errlist.c b/sysdeps/gnu/errlist.c index 85ae7f11ac..3e62c5f127 100644 --- a/sysdeps/gnu/errlist.c +++ b/sysdeps/gnu/errlist.c @@ -2,7 +2,7 @@ #include -const char *_sys_errlist[] = +const char *const _sys_errlist[] = { [0] = N_("Success"), #ifdef EPERM -- cgit v1.2.3