aboutsummarylogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 9fdf24b94f78..57b2a835d082 100644
--- a/main.c
+++ b/main.c
@@ -45,14 +45,14 @@ int main(int argc, char* argv[]) {
// Graph
else if (strcmp(cmd, "graph") == 0 && argc == 3)
- graph_main(sym, NULL);
+ graph_main(sym, NULL, NULL);
// Compare
else if (strcmp(cmd, "cmp") == 0 && argc == 4) {
char sym2[strlen(argv[3]) + 1];
strcpy(sym2, argv[3]);
strtoupper(sym2);
- graph_main(sym, sym2);
+ graph_main(sym, sym2, NULL);
}
// Check