Skip to content
Snippets Groups Projects
Commit 35a11f7b authored by David Bühler's avatar David Bühler
Browse files

[kernel] Ast_diff: fixes a typo in a comparison function.

parent 3e2b3f9d
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ let compare_pc pc1 pc2 =
| `Body_changed, `Body_changed -> 0
| `Body_changed, _ -> -1
| _, `Body_changed -> 1
| `Callees_changed, `Callees_changed -> -1
| `Callees_changed, `Callees_changed -> 0
| `Callees_changed, _ -> -1
| _, `Callees_changed -> 1
| `Callees_spec_changed, `Callees_spec_changed -> 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment