diff options
author | 2025-01-27 17:11:46 -0500 | |
---|---|---|
committer | 2025-01-27 17:11:46 -0500 | |
commit | cd3c2420fb18313bccb47431724cda86fa00067e (patch) | |
tree | 6681d32e835304fdf51c6036532be5970063c697 /src/lib/formats/uef_cas.cpp | |
parent | cdb94c2be58ccbc427871890017e2213ee634079 (diff) |
lib/formats: Fix build after cdb94c2be58ccbc427871890017e2213ee634079
Diffstat (limited to 'src/lib/formats/uef_cas.cpp')
-rw-r--r-- | src/lib/formats/uef_cas.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/formats/uef_cas.cpp b/src/lib/formats/uef_cas.cpp index 1e21f820500..9932f18721a 100644 --- a/src/lib/formats/uef_cas.cpp +++ b/src/lib/formats/uef_cas.cpp @@ -265,7 +265,8 @@ static int uef_cas_fill_wave( int16_t *buffer, int length, const uint8_t *bytes int chunk_length = get_u32le( &bytes[pos+2] ); uint32_t baud_length, j; - uint8_t i, *c; + uint8_t i; + const uint8_t *c; pos += 6; switch( chunk_type ) { case 0x0100: /* implicit start/stop bit data block */ |