summaryrefslogtreecommitdiff
path: root/src/reporting.ml
diff options
context:
space:
mode:
authorAlasdair Armstrong2019-05-29 13:59:28 +0100
committerAlasdair Armstrong2019-05-29 13:59:28 +0100
commit21f2d6abb344b56ea26aff3169aebf69a0d99c8a (patch)
tree130c342d6479eec9ecefd3224256f6985e939365 /src/reporting.ml
parentfd00008838c6398bf1678372c53b4749f644a1a9 (diff)
Fix sail_truncate error message in SMT
Diffstat (limited to 'src/reporting.ml')
-rw-r--r--src/reporting.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reporting.ml b/src/reporting.ml
index e81fbae8..0b727836 100644
--- a/src/reporting.ml
+++ b/src/reporting.ml
@@ -145,7 +145,7 @@ let dest_err = function
| Err_general (l, m) -> ("Error", Loc l, m)
| Err_unreachable (l, (file, line, _, _), m) ->
(Printf.sprintf "Internal error: Unreachable code (at \"%s\" line %d)" file line, Loc l, m ^ issues)
- | Err_todo (l, m) -> ("Todo" ^ m, Loc l, "")
+ | Err_todo (l, m) -> ("Todo", Loc l, m)
| Err_syntax (p, m) -> ("Syntax error", Pos p, m)
| Err_syntax_loc (l, m) -> ("Syntax error", Loc l, m)
| Err_lex (p, s) -> ("Lexical error", Pos p, s)