this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix pwrite bug

garrison 905839b9 698c2644

+1 -1
+1 -1
lib/trinity/sim_file.ex
··· 156 156 start_block_index = div(loc, @block_size) 157 157 start_pos = rem(loc, @block_size) 158 158 159 - case (loc + bin_size) <= @block_size do 159 + case (start_pos + bin_size) <= @block_size do 160 160 true -> 161 161 write_block(file_data, fd, start_block_index, start_pos, bin) 162 162