X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=common%2Fenv_fat.c;h=e4c848935ad19d7cac64d07102e7ebe39841b58b;hb=822d43a6d90223db043d1610895c8e8b82e5ba5b;hp=8db0160ceb0ced4fc703a2a11840d5e6bedde30d;hpb=5a1095a830299aef8dd32495e505e92ab1749e89;p=oweals%2Fu-boot.git diff --git a/common/env_fat.c b/common/env_fat.c index 8db0160ceb..e4c848935a 100644 --- a/common/env_fat.c +++ b/common/env_fat.c @@ -41,6 +41,7 @@ int saveenv(void) disk_partition_t info; int dev, part; int err; + loff_t size; err = env_export(&env_new); if (err) @@ -59,7 +60,8 @@ int saveenv(void) return 1; } - err = file_fat_write(FAT_ENV_FILE, (void *)&env_new, sizeof(env_t)); + err = file_fat_write(FAT_ENV_FILE, (void *)&env_new, 0, sizeof(env_t), + &size); if (err == -1) { printf("\n** Unable to write \"%s\" from %s%d:%d **\n", FAT_ENV_FILE, FAT_ENV_INTERFACE, dev, part);