Skip to content

Commit

Permalink
fix(device_info_plus): remove unnecessary print (#2607)
Browse files Browse the repository at this point in the history
  • Loading branch information
muhib349 committed Feb 27, 2024
1 parent df72383 commit 5d51581
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public struct Sysctl {
let preFlightResult = Darwin.sysctl(UnsafeMutablePointer<Int32>(mutating: keysPointer.baseAddress), UInt32(keys.count), nil, &requiredSize, nil, 0)
if preFlightResult != 0 {
throw POSIXErrorCode(rawValue: errno).map {
print($0.rawValue)
return Error.posixError($0)
} ?? Error.unknown
}
Expand Down

0 comments on commit 5d51581

Please sign in to comment.