Skip to content

Commit 56f183d

Browse files
committed
Formatting of previous commits.
1 parent 01395c4 commit 56f183d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/loader/source/loader_impl.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ static int loader_impl_create_singleton(loader_impl impl, const char *path, cons
9191

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

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

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

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

@@ -586,7 +586,7 @@ int loader_impl_function_hook_call(context ctx, const char func_name[])
586586
return 0;
587587
}
588588

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

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

610-
int loader_impl_handle_register(loader_impl impl, char * name, loader_handle_impl handle_impl, void **handle_ptr)
610+
int loader_impl_handle_register(loader_impl impl, char *name, loader_handle_impl handle_impl, void **handle_ptr)
611611
{
612612
if (handle_ptr == NULL)
613613
{

0 commit comments

Comments
 (0)