diff options
author | Camil Staps | 2016-08-30 21:28:08 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-30 21:28:08 +0200 |
commit | 2218e6612081d14c2cd3c94391472ffe2f338944 (patch) | |
tree | 252a6e58137b69c43b292e448997eead78281b77 /interpreter/graphs.h | |
parent | Fixed issue with twice (diff) |
Fix one memory leak mentioned in #2; add debug dot graphs output
Diffstat (limited to 'interpreter/graphs.h')
-rw-r--r-- | interpreter/graphs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter/graphs.h b/interpreter/graphs.h index 07ca663..f127642 100644 --- a/interpreter/graphs.h +++ b/interpreter/graphs.h @@ -16,7 +16,7 @@ typedef struct { } nodes_array; void use_node(struct node* node, unsigned int count); -void free_node(struct node* node, unsigned free_first); +void free_node(struct node* node, unsigned int count, unsigned free_first); nodes_array* push_node(nodes_array* nodes, struct node* node); |