File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -149,21 +149,21 @@ let extract_format fmt start stop widths =
149
149
;;
150
150
151
151
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
158
158
;;
159
159
160
160
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
167
167
;;
168
168
169
169
(* Returns the position of the next character following the meta format
You can’t perform that action at this time.
0 commit comments