Skip to content

Commit

Permalink
Fixed Linux support
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Nov 12, 2024
1 parent 48f2f4a commit f7ffc77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Bluetooth/Extensions/System.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ internal func _memcmp(
) -> Int32
#else
internal func _memcmp(
_ p1: UnsafeRawPointer?,
_ p2: UnsafeRawPointer?,
_ p1: UnsafeRawPointer,
_ p2: UnsafeRawPointer,
_ size: Int
) -> Int32 {
memcmp(p1, p2, size)
Expand Down

0 comments on commit f7ffc77

Please sign in to comment.