Skip to content

Commit

Permalink
Merge pull request #3179 from DanHeidinga/djh/format
Browse files Browse the repository at this point in the history
Improve readability by decreasing parameter indentation level
  • Loading branch information
pshipton authored Oct 9, 2018
2 parents 9084442 + 6d1ecea commit 3ce8244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/vm/vmbootlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,8 @@ classLoaderRegisterLibrary(void *voidVMThread, J9ClassLoader *classLoader, const
*/
if (0 == j9sysinfo_get_executable_name(NULL, &executableName)) {
slOpenResult = j9sl_open_shared_library(executableName,
&newNativeLibrary->handle,
(flags | J9PORT_SLOPEN_OPEN_EXECUTABLE));
&newNativeLibrary->handle,
(flags | J9PORT_SLOPEN_OPEN_EXECUTABLE));
if (J9PORT_SL_FOUND == slOpenResult) {
nameLength = J9STATIC_ONLOAD_LENGTH + strlen(logicalName) + 1;
onloadRtnName = j9mem_allocate_memory(nameLength, J9MEM_CATEGORY_CLASSES);
Expand Down

0 comments on commit 3ce8244

Please sign in to comment.