* maintMakefile, various: Improve constification of the codebase.

This commit is contained in:
Paul Smith
2014-04-25 17:10:47 -04:00
parent e364498113
commit ac67346d0f
12 changed files with 189 additions and 189 deletions

View File

@@ -1546,7 +1546,7 @@ name_mtime (const char *name)
static const char *
library_search (const char *lib, FILE_TIMESTAMP *mtime_ptr)
{
static char *dirs[] =
static const char *dirs[] =
{
#ifndef _AMIGA
"/lib",
@@ -1576,7 +1576,7 @@ library_search (const char *lib, FILE_TIMESTAMP *mtime_ptr)
/* Information about the earliest (in the vpath sequence) match. */
unsigned int best_vpath = 0, best_path = 0;
char **dp;
const char **dp;
libpatterns = xstrdup (variable_expand ("$(.LIBPATTERNS)"));