fix double assignment to strtable buckets_min in raddbg_pdb

This commit is contained in:
Ryan Fleury
2024-02-08 04:12:29 -08:00
parent 3a811e5e16
commit 2967d8be2a
+1 -1
View File
@@ -191,7 +191,7 @@ pdb_strtbl_from_data(Arena *arena, String8 data){
result->strblock_min = strblock_off;
result->strblock_max = strblock_off + strblock_size;
result->buckets_min = bucket_array_off;
result->buckets_min = bucket_array_off + bucket_array_size;
result->buckets_max = bucket_array_off + bucket_array_size;
}
}