unotest/source/embindtest/embindtest.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b0f189160c7a0142b74f78f5c8616f18f39bcbb8
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Tue Jan 6 13:07:03 2026 +0100
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Tue Jan 6 22:13:48 2026 +0100

    Prevent int vs. sal_Int32 mismatch
    
    ...as caused build issues for e.g. 32-bit Wasm
    
    Change-Id: Iec2964dd73b29cca8b1acbe297cdf0aee27cf77a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196620
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <[email protected]>

diff --git a/unotest/source/embindtest/embindtest.cxx 
b/unotest/source/embindtest/embindtest.cxx
index 32673aa00d47..c46c73e418e8 100644
--- a/unotest/source/embindtest/embindtest.cxx
+++ b/unotest/source/embindtest/embindtest.cxx
@@ -538,7 +538,7 @@ void 
doExecuteTest(css::uno::Reference<org::libreoffice::embindtest::XTest> cons
         auto const val = test->getSequenceAny();
         verify(val
                == css::uno::Sequence<css::uno::Any>{
-                      css::uno::Any(-123456), css::uno::Any(),
+                      css::uno::Any(sal_Int32(-123456)), css::uno::Any(),
                       
css::uno::Any(css::uno::Sequence<org::libreoffice::embindtest::Enum>{
                           org::libreoffice::embindtest::Enum_E_2,
                           org::libreoffice::embindtest::Enum_E3,

Reply via email to