add a missing `const' qualifier

This commit is contained in:
rlar 2010-07-16 15:42:46 +00:00
parent 1915f964dc
commit ba91a6074a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-07-16 Robert Larice
* src/xspice/icm/analog/multi_input_pwl/cfunc.mod :
add a missing `const' qualifier
2010-07-16 Robert Larice
* src/xspice/icm/digital/d_fdiv/cfunc.mod :
xspice, digital/d_fdiv, fix the type of counter and counter_old

View File

@ -173,7 +173,7 @@ get_output( ARGS, double x )
void
cm_multi_input_pwl(ARGS)
{
char* model = ( PARAM_NULL(model) == 1 ) ? "and" : PARAM(model);
const char* model = ( PARAM_NULL(model) == 1 ) ? "and" : PARAM(model);
double output;
if ( ANALYSIS == TRANSIENT || ANALYSIS == DC )