aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Tassi2014-09-01 14:55:20 +0200
committerEnrico Tassi2014-09-02 11:29:42 +0200
commitdeebdaa96867dc4424d412956b3a2f595f4d4cc7 (patch)
tree77abbd58201f9a9f814085a78f598143fcd1f21a
parentcf6b12cb3a88fb3af6a7b3e91d17db8b06d23c81 (diff)
stm: use xlabel insted of label in dot (debug) output
-rw-r--r--stm/stm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/stm.ml b/stm/stm.ml
index 20448947f3..81876e551d 100644
--- a/stm/stm.ml
+++ b/stm/stm.ml
@@ -311,7 +311,7 @@ end = struct
let c1 = add_to_clus_or_ids from cf in
List.iter (fun (dest, trans) ->
let c2 = add_to_clus_or_ids dest (Dag.cluster_of graph dest) in
- fprintf oc "%s -> %s [label=%s,labelfloat=%b];\n"
+ fprintf oc "%s -> %s [xlabel=%s,labelfloat=%b];\n"
(node from) (node dest) (edge trans) (c1 && c2)) l
);
StateidSet.iter (nodefmt oc) !ids;