Remove the unnecessary construction of the UnsafePointer as the `sterror` returns a `UnsafeMutablePointer<Int8>!`
@@ -10,6 +10,7 @@ import Foundation
public class Errno {
public class func description() -> String {
- return String(cString: UnsafePointer(strerror(errno)))
+ // https://forums.developer.apple.com/thread/113919
+ return String(cString: strerror(errno))
}