diff options
author | Desmin Alpaslan <mavibirdesmi@gmail.com> | 2019-12-26 01:03:08 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-03 15:45:39 +0100 |
commit | f17f9bf0b3e5e548a8ef40206ebed180bda14931 (patch) | |
tree | 7bda830d4129637c0742c4a7853d8d3954922c85 /jvmfwk | |
parent | fbebfdaa83efa94cbb0b39d6c2e2dc62488ae1ac (diff) |
tdf#96505: Get rid of cargo cult long integer literals
Change-Id: Id64855e3879d21106930a4dc9c36b246deb3c6e7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85818
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/source/framework.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jvmfwk/source/framework.cxx b/jvmfwk/source/framework.cxx index 60d7dd796c20..67b65acb8a5c 100644 --- a/jvmfwk/source/framework.cxx +++ b/jvmfwk/source/framework.cxx @@ -309,7 +309,7 @@ javaFrameworkError jfw_findAndSelectJRE(std::unique_ptr<JavaInfo> *pInfo) //Determine if accessibility support is needed bool bSupportAccessibility = jfw::isAccessibilitySupportDesired(); nFeatureFlags = bSupportAccessibility ? - JFW_FEATURE_ACCESSBRIDGE : 0L; + JFW_FEATURE_ACCESSBRIDGE : 0; // 'bInfoFound' indicates whether a Java installation has been found |