commit | f3375af4b6754408379c644195c01ca0a3207f0f | [log] [tgz] |
---|---|---|
author | Rob Barnes <robbarnes@google.com> | Tue Aug 30 12:15:27 2022 -0600 |
committer | Fabio Baltieri <fabio.baltieri@gmail.com> | Wed Aug 31 10:21:42 2022 +0000 |
tree | b2f6b2a9fad2b92c32f7edc776199bbafebf0969 | |
parent | eedab1782cbbdc515cc8d2e9ebfcb77570b13e02 [diff] |
cbprintf: Remove unnecessary downcast Downcast from const void* to void* is unnecessary since the signature of memcpy expects a const in second param. This downcast will raise a compile error when -Werror=cast-qual is on. Signed-off-by: Rob Barnes <robbarnes@google.com>