summaryrefslogtreecommitdiffstats
path: root/svgio/source/svgreader/svgtools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/source/svgreader/svgtools.cxx')
-rw-r--r--svgio/source/svgreader/svgtools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svgtools.cxx b/svgio/source/svgreader/svgtools.cxx
index a0024730f89a..b6e1d23f2a24 100644
--- a/svgio/source/svgreader/svgtools.cxx
+++ b/svgio/source/svgreader/svgtools.cxx
@@ -612,7 +612,7 @@ namespace svgio
{
if(nChar >= '0' && nChar <= '9')
{
- return sal_Int32(nChar - u'0');
+ return nChar - u'0';
}
else if(nChar >= 'A' && nChar <= 'F')
{