Kaydet (Commit) 2ff03919 authored tarafından David Tardon's avatar David Tardon

use SAL_N_ELEMENTS

üst ea68b1a8
......@@ -59,7 +59,7 @@ char const* const* SunInfo::getJavaExePaths(int * size)
"jre/bin/java"
#endif
};
*size = sizeof (ar) / sizeof (char*);
*size = SAL_N_ELEMENTS(ar);
return ar;
}
......@@ -79,7 +79,7 @@ char const* const* SunInfo::getRuntimePaths(int * size)
#endif
};
*size = sizeof(ar) / sizeof (char*);
*size = SAL_N_ELEMENTS(ar);
return ar;
}
......@@ -94,7 +94,7 @@ char const* const* SunInfo::getLibraryPaths(int* size)
"/lib/" JFW_PLUGIN_ARCH
};
*size = sizeof(ar) / sizeof (char*);
*size = SAL_N_ELEMENTS(ar);
return ar;
#else
*size = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment