SimRsim.c: update with const API change to utils module

This commit is contained in:
Darryl L. Miles 2025-01-31 19:35:44 +00:00 committed by R. Timothy Edwards
parent 120cea3921
commit be09d8d402
1 changed files with 3 additions and 2 deletions

View File

@ -109,7 +109,7 @@ SimGetNodeCommand(cmd)
* step the clock once for every node in the selection. * step the clock once for every node in the selection.
*/ */
static char *RsimNodeCommands[] = static const char *RsimNodeCommands[] =
{ {
"?", "?",
"!", "!",
@ -162,7 +162,8 @@ SimStartRsim(argv)
char *getenv(); char *getenv();
char rsimfile[256]; char rsimfile[256];
char *cad = BIN_DIR; char *cad = BIN_DIR;
char *src, *dst; const char *src;
char *dst;
/* don't start another rsim if one is already running */ /* don't start another rsim if one is already running */