summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2018-04-04 11:22:37 +0100
committerAndras Timar <andras.timar@collabora.com>2018-04-12 10:51:34 +0200
commit765ad2fc84af58278e78604c67a883b5dfcfc0a3 (patch)
treecfb6f0771419ead538f41854c1c122f38dd5d4b5 /solenv
parent2233c6aab2d51b0cb765cdc3fc0f61931a0c8476 (diff)
A semicolon missing
Change-Id: I286aa29c94068b63dfef8cca9707afafc8562a50 Reviewed-on: https://gerrit.libreoffice.org/52371 Reviewed-by: Jean-Baptiste Faure <jbfaure@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com> (cherry picked from commit 1e3646411507640ab6790eae8796992c036be085)
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/windows/file.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/windows/file.pm b/solenv/bin/modules/installer/windows/file.pm
index b8176a54794c..bef14ea4c478 100644
--- a/solenv/bin/modules/installer/windows/file.pm
+++ b/solenv/bin/modules/installer/windows/file.pm
@@ -570,7 +570,7 @@ sub get_fileversion
}
elsif ($ttfdata =~ /$ttfversionU/ms)
{
- my $verfound = $2
+ my $verfound = $2;
my ($version, $subversion, $microversion, $vervariant) = split(/\./,$verfound =~ s/\0//g);
$fileversion = int($version) . "." . int($subversion) . "." . int($microversion) . "." . int($vervariant);
}