Skip to content

Commit 561eba9

Browse files
committed
Fix a previously introduces compilation issue
1 parent c886a3f commit 561eba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Citadel/SFTP/Client/SFTPFile.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public final class SFTPFile {
111111
length: UInt32(consumed)
112112
)
113113

114-
readableBytes -= data.readableBytes
114+
readableBytes -= UInt64(data.readableBytes)
115115
buffer.writeBuffer(&data)
116116
}
117117
} else {

0 commit comments

Comments
 (0)