1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-05-31 08:31:41 +05:30

reverse-ramdisk.c: omit curly brackets

This commit is contained in:
2023-12-28 00:09:16 +03:00
parent 03f7a5460a
commit b5c9a01749

View File

@ -124,9 +124,8 @@ int tf_free(int ID) {
free(temp_files[index].file_path); free(temp_files[index].file_path);
// Shift the remaining temp files in the array // Shift the remaining temp files in the array
for (int i = index; i < num_temp_files - 1; i++) { for (int i = index; i < num_temp_files - 1; i++)
temp_files[(size_t) i] = temp_files[(size_t) i + 1]; temp_files[(size_t) i] = temp_files[(size_t) i + 1];
}
num_temp_files--; num_temp_files--;