Skip to content

Commit

Permalink
Fix lint violation
Browse files Browse the repository at this point in the history
  • Loading branch information
microtherion committed Sep 30, 2024
1 parent 70fc9f4 commit c1ce2fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/ZIPFoundation/Data+Serialization.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extension Data {
}

func scanValue<T>(start: Int) -> T {
return self.withUnsafeBytes() {
return self.withUnsafeBytes {
$0.loadUnaligned(fromByteOffset: start, as: T.self)
}
}
Expand Down

0 comments on commit c1ce2fb

Please sign in to comment.