Skip to content

Commit

Permalink
Try to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenzV committed Jun 11, 2024
1 parent 677d31d commit 5d99129
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/cff/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ fn get_sid_remapper<'a>(
fd_remapper: &FontDictRemapper,
) -> Option<SidRemapper<'a>> {
let mut sid_remapper = SidRemapper::new();
sid_remapper.remap(b"Adobe");
sid_remapper.remap(b"Identity");
sid_remapper.remap(&b"Adobe"[..]);
sid_remapper.remap(&b"Identity"[..]);

let mut remap_sid = |sid: StringId| {
if sid.is_standard_string() {
Expand Down
2 changes: 1 addition & 1 deletion tests/fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5d99129

Please sign in to comment.