diff options
Diffstat (limited to 'onlineupdate')
-rw-r--r-- | onlineupdate/source/update/updater/updater.cxx | 2 |
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); } } |