File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ typedef struct rw_args_t {
48
48
uint8_t n ;
49
49
uint8_t eot ;
50
50
uint8_t gpl ;
51
- uint8_t stp ;
51
+ uint8_t dtl ;
52
52
} rw_args_t ;
53
53
54
54
// Parsing structure for format arguments
@@ -727,7 +727,7 @@ static void buffer_update(void) {
727
727
// Ready to serve data
728
728
if (ret > DISK_IMAGE_NOMEDIUM ) {
729
729
if (rw_args -> n == 0 )
730
- rwcount_max = MIN ((size_t )rw_args -> stp , (size_t )ret );
730
+ rwcount_max = MIN ((size_t )rw_args -> dtl , (size_t )ret );
731
731
else
732
732
rwcount_max = (size_t )ret ;
733
733
}
@@ -781,7 +781,7 @@ static void buffer_write_size(void) {
781
781
// Ready to serve data
782
782
if (ret > DISK_IMAGE_NOMEDIUM ) {
783
783
if (rw_args -> n == 0 )
784
- rwcount_max = MIN ((size_t )rw_args -> stp , (size_t )ret );
784
+ rwcount_max = MIN ((size_t )rw_args -> dtl , (size_t )ret );
785
785
else
786
786
rwcount_max = (size_t )ret ;
787
787
}
You can’t perform that action at this time.
0 commit comments