From 8ffb4cabd9ceac529f1c2d02bd1fdeb50bd2988b Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 20 Aug 2020 13:04:38 +0200 Subject: Fix typo in code Change-Id: I977c6c5eaee5d1b6f9c3d0587e0a34ef46ee211e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101104 Tested-by: Jenkins Reviewed-by: Julien Nabet --- vcl/source/gdi/TypeSerializer.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl') diff --git a/vcl/source/gdi/TypeSerializer.cxx b/vcl/source/gdi/TypeSerializer.cxx index e2f399f2d76a..ad5f3e3a6dc2 100644 --- a/vcl/source/gdi/TypeSerializer.cxx +++ b/vcl/source/gdi/TypeSerializer.cxx @@ -220,11 +220,11 @@ void TypeSerializer::readGraphic(Graphic& rGraphic) { sal_uInt32 nMagic1 = 0; sal_uInt32 nMagic2 = 0; - sal_uInt64 nBeginPoisition = mrStream.Tell(); + sal_uInt64 nBeginPosition = mrStream.Tell(); mrStream.ReadUInt32(nMagic1); mrStream.ReadUInt32(nMagic2); - mrStream.Seek(nBeginPoisition); + mrStream.Seek(nBeginPosition); if (!mrStream.GetError()) { -- cgit