Skip to content

Commit cc51967

Browse files
committed
Fix for Xcode 12.4
1 parent 44ec353 commit cc51967

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GRDB/Core/WALSnapshot.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ final class WALSnapshot {
4747
}
4848
#endif
4949
}
50-
guard code == SQLITE_OK, let snapshot = snapshot else {
50+
guard code == SQLITE_OK, let s = snapshot else {
5151
return nil
5252
}
53-
self.snapshot = snapshot
53+
self.snapshot = s
5454
}
5555

5656
deinit {

0 commit comments

Comments
 (0)