Fix license header

This commit is contained in:
Mario Hüttel 2019-11-17 15:52:28 +01:00
parent aa7f5b4745
commit a4d84cff43
33 changed files with 35 additions and 34 deletions

View File

@ -106,7 +106,8 @@ int FUNC_DECL(EXTERNAL_LIBRARY_INIT_FUNCTION)(const char *params, const char *ve
if (!getcwd(cwd, sizeof(cwd))) { if (!getcwd(cwd, sizeof(cwd))) {
fprintf(stderr, "Error getting current working directory. Maybe the path is too long?\n"); fprintf(stderr, "Error getting current working directory. Maybe the path is too long?\n");
return -2; ret = -2;
goto return_value;
} }
p_sys_path = PySys_GetObject("path"); p_sys_path = PySys_GetObject("path");