Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2021-04-29 18:01:32 +0300
committerJoseph Eagar <joeedh@gmail.com>2021-04-29 18:01:32 +0300
commit8eeacca9cbc1e82b8cd869ae43e44fec2d4492c9 (patch)
tree4a81a0d0b1f10710f9a2d5361c710161a4c6f07f /source/creator/creator.c
parent82847af9f94cd7a8bee624e5b8254b52e34ba236 (diff)
Fix a few cast warnings
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index b40718d1f7c..bed27f8bc87 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -274,7 +274,7 @@ int main(int argc,
LocalFree(argv_16);
/* free on early-exit */
- app_init_data.argv = argv;
+ app_init_data.argv = (const char**) argv;
app_init_data.argv_num = argv_num;
}
#endif /* WIN32 */