MXS-1441 Make externcmd_allocate const correct

This commit is contained in:
Johan Wikman
2017-10-03 10:45:37 +03:00
parent cf0a87e7f2
commit 17c3d1e612
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ char* externcmd_extract_command(const char* argstr);
*
* @return Pointer to new external command struct or NULL if an error occurred
*/
EXTERNCMD* externcmd_allocate(char* argstr, uint32_t timeout);
EXTERNCMD* externcmd_allocate(const char* argstr, uint32_t timeout);
/**