Skip to content

Commit 7b406d5

Browse files
committed
Fixed compiler warning picked up by Xcode 11.1 compiler
1 parent 9d774ff commit 7b406d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Connection/Functions/Function.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ extension Connection {
360360
let text = bindingDateFormatter.string(from: date)
361361
sqlite3_result_text64(context, text, UInt64(text.utf8.count), SQLITE_TRANSIENT, UInt8(SQLITE_UTF8))
362362

363-
case .data(var data):
363+
case .data(let data):
364364
data.withUnsafeBytes {
365365
sqlite3_result_blob64(context, $0.bindMemory(to: UInt8.self).baseAddress, UInt64(data.count), SQLITE_TRANSIENT)
366366
}

0 commit comments

Comments
 (0)