Skip to content

Commit a2c500f

Browse files
committed
Details.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13413 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
1 parent 559521f commit a2c500f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

stdlib/printf.ml

+12-12
Original file line numberDiff line numberDiff line change
@@ -149,21 +149,21 @@ let extract_format fmt start stop widths =
149149
;;
150150

151151
let extract_format_int conv fmt start stop widths =
152-
let sfmt = extract_format fmt start stop widths in
153-
match conv with
154-
| 'n' | 'N' ->
155-
sfmt.[String.length sfmt - 1] <- 'u';
156-
sfmt
157-
| _ -> sfmt
152+
let sfmt = extract_format fmt start stop widths in
153+
match conv with
154+
| 'n' | 'N' ->
155+
sfmt.[String.length sfmt - 1] <- 'u';
156+
sfmt
157+
| _ -> sfmt
158158
;;
159159

160160
let extract_format_float conv fmt start stop widths =
161-
let sfmt = extract_format fmt start stop widths in
162-
match conv with
163-
| 'F' ->
164-
sfmt.[String.length sfmt - 1] <- 'g';
165-
sfmt
166-
| _ -> sfmt
161+
let sfmt = extract_format fmt start stop widths in
162+
match conv with
163+
| 'F' ->
164+
sfmt.[String.length sfmt - 1] <- 'g';
165+
sfmt
166+
| _ -> sfmt
167167
;;
168168

169169
(* Returns the position of the next character following the meta format

0 commit comments

Comments
 (0)