summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--l10ntools/source/propmerge.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/l10ntools/source/propmerge.cxx b/l10ntools/source/propmerge.cxx
index 3bd44fb5f974..8c2b97b6c67b 100644
--- a/l10ntools/source/propmerge.cxx
+++ b/l10ntools/source/propmerge.cxx
@@ -88,7 +88,9 @@ namespace
rOfstream
<< "\\u"
<< std::setfill('0') << std::setw(2) << std::uppercase
- << std::hex << (cUniCode >> 8) << (cUniCode & 0xFF);
+ << std::hex << (cUniCode >> 8)
+ << std::setfill('0') << std::setw(2) << std::uppercase
+ << std::hex << (cUniCode & 0xFF);
}
}
}