summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-04-19 17:39:52 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-04-19 17:39:52 +0000
commitfddbc0c1436da3cefc720cfef926157da0f5dcb3 (patch)
treec5def5b59e0ccd59ef0e9c4b32e0a2dd63dc34f0
parenta7d76a4428798d329194682e4658519410618712 (diff)
downloadopenocd+libswd-fddbc0c1436da3cefc720cfef926157da0f5dcb3.tar.gz
openocd+libswd-fddbc0c1436da3cefc720cfef926157da0f5dcb3.tar.bz2
openocd+libswd-fddbc0c1436da3cefc720cfef926157da0f5dcb3.tar.xz
openocd+libswd-fddbc0c1436da3cefc720cfef926157da0f5dcb3.zip
- flash.c change stricmp to strcmp
git-svn-id: svn://svn.berlios.de/openocd/trunk@595 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r--src/flash/flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/flash.c b/src/flash/flash.c
index 6c3242d2..9745c98a 100644
--- a/src/flash/flash.c
+++ b/src/flash/flash.c
@@ -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++;