diff options
-rw-r--r-- | engines/parallaction/parallaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp index 694e9291a7..e1fe4c7e25 100644 --- a/engines/parallaction/parallaction.cpp +++ b/engines/parallaction/parallaction.cpp @@ -1122,7 +1122,7 @@ void Character::setName(const char *name) { end = 0; } else { - char *s = strstr(name, "tras"); + const char *s = strstr(name, "tras"); if (s) { _suffix = _suffixTras; end = s; |