vcl/qa/cppunit/CommonTools.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 9694f9f9710d8d44aba99080123f8b9b0659409d
Author:     Andrea Gelmini <[email protected]>
AuthorDate: Fri Jun 27 13:09:10 2025 +0200
Commit:     Julien Nabet <[email protected]>
CommitDate: Sat Jun 28 10:40:05 2025 +0200

    Fix typo in code
    
    Change-Id: I9d827cdaccef6cb49326523abd72f66c520ac939
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187102
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <[email protected]>

diff --git a/vcl/qa/cppunit/CommonTools.hxx b/vcl/qa/cppunit/CommonTools.hxx
index 702e6ac5c00e..f5170358f9e5 100644
--- a/vcl/qa/cppunit/CommonTools.hxx
+++ b/vcl/qa/cppunit/CommonTools.hxx
@@ -12,8 +12,8 @@
 static std::vector<unsigned char> calculateHash(SvStream& rStream)
 {
     rStream.Seek(STREAM_SEEK_TO_BEGIN);
-    BinaryDataContainer aContianer(rStream, rStream.remainingSize());
-    return aContianer.calculateSHA1();
+    BinaryDataContainer aContainer(rStream, rStream.remainingSize());
+    return aContainer.calculateSHA1();
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Reply via email to