From 31263a7a98c95be277bd8f7a98a0921d672872be Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 3 Jun 2008 08:58:55 +0000 Subject: [PATCH] dot expects "->" and not "=>" --- src/target/graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target/graph.c b/src/target/graph.c index 443d52b..02c32e6 100644 --- a/src/target/graph.c +++ b/src/target/graph.c @@ -112,7 +112,7 @@ static int _graph_function_call(char const * name) #ifdef DEBUG fprintf(stderr, "%s(\"%s\")\n", __func__, name); #endif - fprintf(_fp, "\t%s%s%s%s", _function, " => ", name, ";\n"); + fprintf(_fp, "\t%s%s%s%s", _function, " -> ", name, ";\n"); return 0; }