Skip to content

Commit f92d828

Browse files
Update ArduinoCore-Linux/cores/arduino/libb64/cdecode.c
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 905a6c9 commit f92d828

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • ArduinoCore-Linux/cores/arduino/libb64

ArduinoCore-Linux/cores/arduino/libb64/cdecode.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ int base64_decode_value(char value_in){
9494
}
9595

9696
int base64_decode_block(const char* code_in, const int length_in, char* plaintext_out, base64_decodestate* state_in){
97-
return base64_decode_block_signed((int8_t *) code_in, length_in, (int8_t *) plaintext_out, state_in);
97+
return base64_decode_block_signed((const int8_t *) code_in, length_in, (int8_t *) plaintext_out, state_in);
9898
}
9999

100100
int base64_decode_chars(const char* code_in, const int length_in, char* plaintext_out){
101-
return base64_decode_chars_signed((int8_t *) code_in, length_in, (int8_t *) plaintext_out);
101+
return base64_decode_chars_signed((const int8_t *) code_in, length_in, (int8_t *) plaintext_out);
102102
}

0 commit comments

Comments
 (0)