diff options
Diffstat (limited to 'generic/tclPkgConfig.c')
-rw-r--r-- | generic/tclPkgConfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclPkgConfig.c b/generic/tclPkgConfig.c index 4eed372..5907a03 100644 --- a/generic/tclPkgConfig.c +++ b/generic/tclPkgConfig.c @@ -88,7 +88,7 @@ # define CFG_PROFILED "0" #endif -static Tcl_Config cfg[] = { +static Tcl_Config const cfg[] = { {"debug", CFG_DEBUG}, {"threaded", CFG_THREADED}, {"profiled", CFG_PROFILED}, @@ -120,7 +120,7 @@ static Tcl_Config cfg[] = { void TclInitEmbeddedConfigurationInformation( - Tcl_Interp* interp) /* Interpreter the configuration command is + Tcl_Interp *interp) /* Interpreter the configuration command is * registered in. */ { Tcl_RegisterConfig(interp, "tcl", cfg, TCL_CFGVAL_ENCODING); |