Skip to content

Commit

Permalink
Formatting of previous commits.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Apr 14, 2021
1 parent 01395c4 commit 56f183d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/loader/source/loader_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ static int loader_impl_create_singleton(loader_impl impl, const char *path, cons

static loader_handle_impl loader_impl_load_handle(loader_impl impl, loader_handle module, const loader_naming_name name);

static int loader_impl_handle_init(loader_impl impl, char * name, loader_handle_impl handle_impl, void **handle_ptr, int populated);
static int loader_impl_handle_init(loader_impl impl, char *name, loader_handle_impl handle_impl, void **handle_ptr, int populated);

static int loader_impl_handle_register(loader_impl impl, char * name, loader_handle_impl handle_impl, void **handle_ptr);
static int loader_impl_handle_register(loader_impl impl, char *name, loader_handle_impl handle_impl, void **handle_ptr);

static int loader_impl_function_hook_call(context ctx, const char func_name[]);

Expand Down Expand Up @@ -586,7 +586,7 @@ int loader_impl_function_hook_call(context ctx, const char func_name[])
return 0;
}

int loader_impl_handle_init(loader_impl impl, char * name, loader_handle_impl handle_impl, void **handle_ptr, int populated)
int loader_impl_handle_init(loader_impl impl, char *name, loader_handle_impl handle_impl, void **handle_ptr, int populated)
{
static const char func_init_name[] = LOADER_IMPL_FUNCTION_INIT;

Expand All @@ -607,7 +607,7 @@ int loader_impl_handle_init(loader_impl impl, char * name, loader_handle_impl ha
return result;
}

int loader_impl_handle_register(loader_impl impl, char * name, loader_handle_impl handle_impl, void **handle_ptr)
int loader_impl_handle_register(loader_impl impl, char *name, loader_handle_impl handle_impl, void **handle_ptr)
{
if (handle_ptr == NULL)
{
Expand Down

0 comments on commit 56f183d

Please sign in to comment.