Browse Source

- fox small typo in handle_irscan_command

git-svn-id: svn://svn.berlios.de/openocd/trunk@1178 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.1.0
ntfreak 14 years ago
parent
commit
cca10e6534
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/jtag/jtag.c

+ 1
- 1
src/jtag/jtag.c View File

@@ -2125,7 +2125,7 @@ int handle_irscan_command(struct command_context_s *cmd_ctx, char *cmd, char **a
{
int device = strtoul(args[i*2], NULL, 0);
jtag_device_t *device_ptr=jtag_get_device(device);
if (device==NULL)
if (device_ptr==NULL)
{
return ERROR_FAIL;
}


Loading…
Cancel
Save