Merge pull request #2786 from dp111/breakinside

Put break inside #if
This commit is contained in:
HiFiPhile 2024-09-02 13:50:59 +02:00 committed by GitHub
commit 4349e99fb2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -315,9 +315,8 @@ static void _ff_pull_n(tu_fifo_t* f, void* app_buf, uint16_t n, uint16_t rd_ptr,
// Read data wrapped part
if (wrap_bytes > 0) _ff_pull_const_addr(app_buf, ff_buf, wrap_bytes);
}
#endif
break;
#endif
default: break;
}
}