Skip to content

Commit

Permalink
svg_converted: fix build (zlib2 split)
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrek committed Jul 8, 2024
1 parent 1169b92 commit ae2c650
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/svg_converter.ml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@


open Filename2
open Zlib

let load_svg file =
Printf.printf "Converting file %s\n" file;
Expand All @@ -29,7 +28,7 @@ let load_svg file =
let buf = String.create len in
really_input ic buf 0 len;
close_in ic;
let bufz = compress_string buf in
let bufz = Zlib2.compress_string buf in
let basename = basename file in
let extension = last_extension basename in
let dirname = String.sub file 0 (String.length file - String.length basename) in
Expand Down

0 comments on commit ae2c650

Please sign in to comment.