diff options
Diffstat (limited to 'lib/jid.ml')
-rw-r--r-- | lib/jid.ml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ let uchars_of_string s : uchars = let k = utf_decode_length c in let u = utf_decode_uchar c in loop (u :: acc) (i + k) - in loop [] (String.length s) + in loop [] 0 let string_of_uchars (u : uchars) = let buf = Buffer.create (4 * List.length u) in |