minor fixes

This commit is contained in:
Nikita Smith
2024-11-21 15:58:32 -08:00
parent fbf180df2f
commit 7ac7bea420
2 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -289,8 +289,8 @@ msf_parsed_from_data(Arena *arena, String8 msf_data)
result = push_array_no_zero(arena, MSF_Parsed, 1);
result->streams = streams;
result->stream_count = st->stream_count;
result->block_size = st->page_size;
result->block_count = st->total_page_count;
result->page_size = st->page_size;
result->page_count = st->total_page_count;
}
scratch_end(scratch);
+2 -2
View File
@@ -33,8 +33,8 @@ struct MSF_Parsed
{
String8 *streams;
U64 stream_count;
U64 block_size;
U64 block_count;
U64 page_size;
U64 page_count;
};
////////////////////////////////