From ef7a592537e5d52a58b48c02eb15698ad896c268 Mon Sep 17 00:00:00 2001 From: opa334 Date: Wed, 1 Jan 2025 21:09:19 +0100 Subject: [PATCH] Improve code format --- BaseBin/systemhook/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseBin/systemhook/src/main.c b/BaseBin/systemhook/src/main.c index c6c6750a8..e15c5caa3 100644 --- a/BaseBin/systemhook/src/main.c +++ b/BaseBin/systemhook/src/main.c @@ -379,7 +379,7 @@ __attribute__((constructor)) static void initializer(void) // We can hardcode /var/jb here since if it doesn't exist, loading TweakLoader.dylib is not going to work anyways if (should_enable_tweaks()) { const char *tweakLoaderPath = "/var/jb/usr/lib/TweakLoader.dylib"; - if(access(tweakLoaderPath, F_OK) == 0) { + if (access(tweakLoaderPath, F_OK) == 0) { void *tweakLoaderHandle = dlopen(tweakLoaderPath, RTLD_NOW); if (tweakLoaderHandle != NULL) { dlclose(tweakLoaderHandle);