fix ordering of arguments to fwrite()

git-svn-id: svn://svn.berlios.de/openocd/trunk@2197 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2009-06-11 13:00:08 +00:00
parent 538050c146
commit 1b2c1c6ff0
2 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@ int handle_append_command(struct command_context_s *cmd_ctx, char *cmd,
for (i = 1; i < argc; i++) for (i = 1; i < argc; i++)
{ {
if (fwrite(args[i], strlen(args[i]), 1, config_file)!=strlen(args[i])) if (fwrite(args[i], 1, strlen(args[i]), config_file)!=strlen(args[i]))
break; break;
if (i != argc - 1) if (i != argc - 1)
{ {

View File

@ -2623,7 +2623,7 @@ static int handle_virt2phys_command(command_context_t *cmd_ctx,
static void writeData(FILE *f, const void *data, size_t len) static void writeData(FILE *f, const void *data, size_t len)
{ {
size_t written = fwrite(data, len, 1, f); size_t written = fwrite(data, 1, len, f);
if (written != len) if (written != len)
LOG_ERROR("failed to write %zu bytes: %s", len, strerror(errno)); LOG_ERROR("failed to write %zu bytes: %s", len, strerror(errno));
} }