Browse Source

deps/obs-scripting: Fix formatting

jp9000 6 years ago
parent
commit
6ab6fdffd1
1 changed files with 3 additions and 2 deletions
  1. 3 2
      deps/obs-scripting/obs-scripting-lua.c

+ 3 - 2
deps/obs-scripting/obs-scripting-lua.c

@@ -43,7 +43,8 @@ static const char *startup_script_template = "\
 for val in pairs(package.preload) do\n\
 	package.preload[val] = nil\n\
 end\n\
-package.cpath = package.cpath .. \";\" .. \"%s/Contents/MacOS/?.so\" .. \";\" .. \"%s\" .. \"/?." SO_EXT "\"\n\
+package.cpath = package.cpath .. \";\" .. \"%s/Contents/MacOS/?.so\" .. \";\" .. \"%s\" .. \"/?." SO_EXT
+					     "\"\n\
 require \"obslua\"\n";
 
 static const char *get_script_path_func = "\
@@ -1310,7 +1311,7 @@ void obs_lua_load(void)
 	/* ---------------------------------------------- */
 	/* Initialize Lua startup script                  */
 
-char* bundlePath = "./";
+	char *bundlePath = "./";
 
 #ifdef __APPLE__
 	Class nsRunningApplication = objc_lookUpClass("NSRunningApplication");