nostril icon indicating copy to clipboard operation
nostril copied to clipboard

fix: compiler warning base64_decode_tail_using_maps

Open araujo88 opened this issue 1 year ago • 0 comments

Fixed the following compiler warning:

ase64.c:146:71: warning: argument 2 of type ‘char[3]’ with mismatched bound [-Warray-parameter=]
  146 | ssize_t base64_decode_tail_using_maps(const base64_maps_t *maps, char dest[3],
      |                                                                  ~~~~~^~~~~~~
In file included from base64.c:2:
base64.h:119:72: note: previously declared as ‘char *’
  119 | ssize_t base64_decode_tail_using_maps(const base64_maps_t *maps, char *dest,
      |                                                                  ~~~~~~^~~~

araujo88 avatar Mar 06 '23 14:03 araujo88