aboutsummaryrefslogtreecommitdiff
path: root/pc.l
diff options
context:
space:
mode:
Diffstat (limited to 'pc.l')
-rw-r--r--pc.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/pc.l b/pc.l
index 701e469..ef4fbb0 100644
--- a/pc.l
+++ b/pc.l
@@ -36,7 +36,7 @@ id [A-Za-z][A-Za-z0-9_]*
input {
node *tmp;
- tmp = scope_insert(cur_scope, "write");
+ tmp = scope_insert(cur_scope, strdup("write"));
tmp->func_info = malloc(sizeof(struct fi));
return IO;
@@ -44,7 +44,7 @@ input {
output {
node *tmp;
- tmp = scope_insert(cur_scope, "read");
+ tmp = scope_insert(cur_scope, strdup("read"));
tmp->func_info = malloc(sizeof(struct fi));
return IO;