From 0e2ac2de24b2d64924826a693630d8d555beae3a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Oct 2008 22:00:39 +0100 Subject: avoid a compiler warning (strip_program): Declare to be const. --- src/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.c b/src/install.c index 430e69ab9..9dda05ade 100644 --- a/src/install.c +++ b/src/install.c @@ -132,7 +132,7 @@ static bool strip_files; static bool dir_arg; /* Program used to strip binaries, "strip" is default */ -static char *strip_program = "strip"; +static char const *strip_program = "strip"; /* For long options that have no equivalent short option, use a non-character as a pseudo short option, starting with CHAR_MAX + 1. */ -- cgit v1.2.3-54-g00ecf