Commit c8cee3e1 authored by Roy Marmelstein's avatar Roy Marmelstein Committed by GitHub

Merge pull request #113 from peterboni/patch-1

Fix Swift 4 string compiler deprecation warning.
parents 993f5652 624a1499
......@@ -148,7 +148,7 @@ public class Zip {
var pathString = String(cString: fileName)
guard pathString.characters.count > 0 else {
guard pathString.count > 0 else {
throw ZipError.unzipFail
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment