diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-20 12:34:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-20 14:28:33 +0200 |
commit | 7fc01e2c51607e0356b277ddc06f548127b8ff04 (patch) | |
tree | c5713926e1cd3c76c358992d8552a6945d3fad62 /include/com/sun | |
parent | e8b4338d050a67ec54e579d921159f2fd20e9c99 (diff) |
fix __coverity_tainted_data_sanitize__ signature
argument of type "const sal_Int8 *" is incompatible with parameter of type
"void *"
Change-Id: I0f1dba700516043d54c4e46edae9753312b5ad2e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103071
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/com/sun')
-rw-r--r-- | include/com/sun/star/uno/Sequence.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/com/sun/star/uno/Sequence.hxx b/include/com/sun/star/uno/Sequence.hxx index 373d97624cd8..62b8b1df96c3 100644 --- a/include/com/sun/star/uno/Sequence.hxx +++ b/include/com/sun/star/uno/Sequence.hxx @@ -74,7 +74,7 @@ inline Sequence< E >::Sequence( } #if defined(__COVERITY__) -extern "C" void __coverity_tainted_data_sanitize__(void *); +extern "C" void __coverity_tainted_data_sanitize__(const void *); #endif template< class E > |