]> Nishi Git Mirror - gwion.git/commitdiff
:art: Naming
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 12 Jul 2020 17:17:20 +0000 (19:17 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 12 Jul 2020 17:17:20 +0000 (19:17 +0200)
src/compile.c

index 6aca68ba118cbb4054945ae9557e41ce6d3dbde0..b4faf42f4e776b1c5820352d45da4fd1dad028b9 100644 (file)
@@ -144,12 +144,12 @@ ANN m_uint compile_filename(struct Gwion_* gwion, const m_str filename) {
   return compile(gwion, &c);
 }
 
-ANN m_uint compile_string(struct Gwion_* vm, const m_str filename, const m_str data) {
+ANN m_uint compile_string(struct Gwion_* gwion, const m_str filename, const m_str data) {
   struct Compiler c = { .base=filename, .type=COMPILE_MSTR, .data=data };
-  return compile(vm, &c);
+  return compile(gwion, &c);
 }
 
-ANN m_uint compile_file(struct Gwion_* vm, const m_str filename, FILE* file) {
+ANN m_uint compile_file(struct Gwion_* gwion, const m_str filename, FILE* file) {
   struct Compiler c = { .base=filename, .type=COMPILE_FILE, .file=file };
-  return compile(vm, &c);
+  return compile(gwion, &c);
 }