dot expects "->" and not "=>"

This commit is contained in:
Pierre Pronchery 2008-06-03 08:58:55 +00:00
parent 9b4605bbb6
commit 31263a7a98

View File

@ -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;
}