diff options
| author | Reinhard Panhuber <[email protected]> | 2021-02-23 21:53:17 +0100 |
|---|---|---|
| committer | Reinhard Panhuber <[email protected]> | 2021-02-23 21:53:17 +0100 |
| commit | a7f07a1a63a07000a35357194dff7d61890c60c6 (patch) | |
| tree | 8ba5cbfbb3c58f33092dadec5b00863495103bbd /src | |
| parent | 697c9476b75afa22a139325e9ae53d21fa5ed992 (diff) | |
Fix pointer type
Diffstat (limited to 'src')
| -rw-r--r-- | src/portable/dialog/da146xx/dcd_da146xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portable/dialog/da146xx/dcd_da146xx.c b/src/portable/dialog/da146xx/dcd_da146xx.c index 1fa722d63..69ea5d87f 100644 --- a/src/portable/dialog/da146xx/dcd_da146xx.c +++ b/src/portable/dialog/da146xx/dcd_da146xx.c @@ -317,7 +317,7 @@ static void fill_tx_fifo(xfer_ctl_t * xfer) len1--; } - tu_fifo_advance_read_pointer(ff, len-len1); + tu_fifo_advance_read_pointer(xfer->ff, len-len1); left_to_send -= (len-len1); // Check for wrapped part @@ -331,7 +331,7 @@ static void fill_tx_fifo(xfer_ctl_t * xfer) xfer->last_packet_size++; len1--; } - tu_fifo_advance_read_pointer(ff, len-len1); + tu_fifo_advance_read_pointer(xfer->ff, len-len1); left_to_send -= (len-len1); } } |
