summaryrefslogtreecommitdiff
path: root/src/program.c
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2018-07-09 15:48:44 +0800
committerAdrian Thurston <thurston@colm.net>2018-07-09 15:48:44 +0800
commitc91aad232e40ac6fdf0f2b2d754899f396a614fc (patch)
treeb12c294bd8d69ae520b970d769ddee7c878e742a /src/program.c
parent600e5a8138c3587157294cbca844b60f714bb5e7 (diff)
downloadcolm-c91aad232e40ac6fdf0f2b2d754899f396a614fc.tar.gz
use parser, not input, in the send instructions
Diffstat (limited to 'src/program.c')
-rw-r--r--src/program.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/program.c b/src/program.c
index dfbb5c65..5555207a 100644
--- a/src/program.c
+++ b/src/program.c
@@ -213,7 +213,7 @@ void colm_run_program2( program_t *prg, int argc, const char **argv, const int *
prg->argv = argv;
prg->argl = argl;
- Execution execution;
+ execution_t execution;
memset( &execution, 0, sizeof(execution) );
execution.frame_id = prg->rtd->root_frame_id;