From 74c4e94c3d978c1d549c3715cc8ee26d1f3f8e09 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 16 Feb 2021 10:21:28 +0530 Subject: [PATCH] ... --- launcher.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/launcher.c b/launcher.c index eb307cd49..e45c3e38b 100644 --- a/launcher.c +++ b/launcher.c @@ -54,7 +54,8 @@ set_xoptions(const wchar_t *exe_dir, const char *lc_ctype, bool from_source) { } #ifdef FOR_BUNDLE -static int run_embedded(const char* exe_dir_, const char *libpath, int argc, wchar_t **argv, const char *lc_ctype) { +static int +run_embedded(const char* exe_dir_, const char *libpath, int argc, wchar_t **argv, const char *lc_ctype) { int num; Py_NoSiteFlag = 1; Py_FrozenFlag = 1; @@ -100,7 +101,8 @@ end: return ret; } #else -static int run_embedded(const char* exe_dir_, const char *libpath, int argc, wchar_t **argv, const char *lc_ctype) { +static int +run_embedded(const char* exe_dir_, const char *libpath, int argc, wchar_t **argv, const char *lc_ctype) { (void)libpath; wchar_t *exe_dir = Py_DecodeLocale(exe_dir_, NULL); if (exe_dir == NULL) { fprintf(stderr, "Fatal error: cannot decode exe_dir: %s\n", exe_dir_); return 1; }