summaryrefslogtreecommitdiff
path: root/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx b/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
index 1de6afd210b6..8407e3be53e7 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/otherjre.cxx
@@ -44,7 +44,7 @@ char const* const* OtherInfo::getJavaExePaths(int * size)
"jre/bin/java"
#endif
};
- *size = sizeof (ar) / sizeof (char*);
+ *size = SAL_N_ELEMENTS (ar);
return ar;
}
@@ -72,7 +72,7 @@ char const* const* OtherInfo::getRuntimePaths(int * size)
#endif
};
- *size = sizeof(ar) / sizeof (char*);
+ *size = SAL_N_ELEMENTS(ar);
return ar;
}
@@ -94,7 +94,7 @@ char const* const* OtherInfo::getLibraryPaths(int* size)
"/lib/" JFW_PLUGIN_ARCH
};
- *size = sizeof(ar) / sizeof (char*);
+ *size = SAL_N_ELEMENTS(ar);
return ar;
#else
*size = 0;