tests: Fix a compiler warning in tests -fpermissive

Prusa-Firmware/tests/../Firmware/util.h:114:25: error: invalid conversion from ‘const char*’ to ‘char*’ [-fpermissive]
  114 |         pStrEnd = strchr(this->ptr, '"');
      |                   ~~~~~~^~~~~~~~~~~~~~~~
      |                         |
      |                         const char*
This commit is contained in:
gudnimg 2024-08-06 10:32:28 +00:00 committed by Guðni Már Gilbert
parent 428091b7c7
commit 10d156b28c
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public:
: len(0)
, found(false)
{
char * pStrEnd = NULL;
const char * pStrEnd = NULL;
// Start of the string
this->ptr = strchr(pStr, '"');