diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2017-01-24 23:37:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2017-01-24 23:37:11 +0000 |
commit | 96a69d3b71c71985b01a8ca718b96cb2bad1d6f8 (patch) | |
tree | f9a9825d90806cc3790d7274f93c4566707b528b /libexec/ld.so | |
parent | 8863e34d03f57c125488fc55d8c8351b6a20ab6b (diff) |
make ldso[] const; OK guenther@
Diffstat (limited to 'libexec/ld.so')
-rw-r--r-- | libexec/ld.so/dl_printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/dl_printf.c b/libexec/ld.so/dl_printf.c index 8514292b6bf..02d5a5d8f09 100644 --- a/libexec/ld.so/dl_printf.c +++ b/libexec/ld.so/dl_printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dl_printf.c,v 1.19 2017/01/24 07:48:36 guenther Exp $ */ +/* $OpenBSD: dl_printf.c,v 1.20 2017/01/24 23:37:10 millert Exp $ */ /*- * Copyright (c) 1993 @@ -241,7 +241,7 @@ kprintn(int fd, unsigned long ul, int base) } while (p > buf); } -static char ldso[] = "ld.so: "; +static const char ldso[] = "ld.so: "; __dead void _dl_die(const char *fmt, ...) |