Skip to content
Snippets Groups Projects
Commit 208fda15 authored by oharboe's avatar oharboe
Browse files

fix warnings

git-svn-id: svn://svn.berlios.de/openocd/trunk@1837 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent b19c48c6
No related branches found
No related tags found
No related merge requests found
......@@ -218,6 +218,7 @@ int handle_append_command(struct command_context_s *cmd_ctx, char *cmd,
return ERROR_INVALID_ARGUMENTS;
}
int retval=ERROR_FAIL;
FILE *config_file = NULL;
config_file = fopen(args[0], "a");
if (config_file != NULL)
......@@ -227,17 +228,22 @@ int handle_append_command(struct command_context_s *cmd_ctx, char *cmd,
for (i = 1; i < argc; i++)
{
fwrite(args[i], strlen(args[i]), 1, config_file);
if (fwrite(args[i], strlen(args[i]), 1, config_file)!=strlen(args[i]))
break;
if (i != argc - 1)
{
fwrite(" ", 1, 1, config_file);
if (fwrite(" ", 1, 1, config_file)!=1)
break;
}
}
fwrite("\n", 1, 1, config_file);
if ((i==argc)&&(fwrite("\n", 1, 1, config_file)==1))
{
retval=ERROR_OK;
}
fclose(config_file);
}
return ERROR_OK;
return retval;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment