Skip to content

Commit 718339b

Browse files
Change indent
1 parent ca7c995 commit 718339b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cil.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2750,7 +2750,8 @@ let parseInt (str: string) : exp =
27502750
(* Construct an integer of the first kinds that fits. i must be POSITIVE *)
27512751
let ik = List.find (fun ik -> fitsInInt ik i) kinds in
27522752
kintegerCilintString ik i (Some str)
2753-
with Not_found -> E.s (E.unimp "Cannot represent the integer %s\n" (string_of_cilint i))
2753+
with Not_found ->
2754+
E.s (E.unimp "Cannot represent the integer %s\n" (string_of_cilint i))
27542755

27552756

27562757
let d_unop () u =

0 commit comments

Comments
 (0)