Skip to content
Snippets Groups Projects
Commit fddbc0c1 authored by ntfreak's avatar ntfreak
Browse files

- flash.c change stricmp to strcmp

git-svn-id: svn://svn.berlios.de/openocd/trunk@595 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent a7d76a44
No related branches found
No related tags found
No related merge requests found
......@@ -619,7 +619,7 @@ int handle_flash_write_image_command(struct command_context_s *cmd_ctx, char *cm
/* flash auto-erase is disabled by default*/
int auto_erase = 0;
if (stricmp(args[0], "erase")==0)
if (strcmp(args[0], "erase")==0)
{
auto_erase = 1;
args++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment