summaryrefslogtreecommitdiff
path: root/onlineupdate
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2023-01-25 10:32:39 +0200
committerTor Lillqvist <tml@collabora.com>2023-01-25 09:11:29 +0000
commit9f812ea09047e213571919afa4901bdd81b31afa (patch)
tree4fb8a9d547a59922bd523b207744b082df9d6e5c /onlineupdate
parenta0c57c35617c89b880614ff2a2c8708d2675a661 (diff)
loplugin:cstylecast
Change-Id: I729965fd60955102422f579cad458e564de16c34 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146125 Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'onlineupdate')
-rw-r--r--onlineupdate/source/update/updater/updater.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/onlineupdate/source/update/updater/updater.cxx b/onlineupdate/source/update/updater/updater.cxx
index 467f0b67cd1f..a82733323bb9 100644
--- a/onlineupdate/source/update/updater/updater.cxx
+++ b/onlineupdate/source/update/updater/updater.cxx
@@ -2925,7 +2925,7 @@ int NS_main(int argc, NS_tchar **argv)
{
PRErrorCode error = PR_GetError();
fprintf(stderr, "Could not initialize NSS: %s (%d)",
- PR_ErrorToName(error), (int) error);
+ PR_ErrorToName(error), static_cast<int>(error));
_exit(1);
}
}