Skip to content

Commit

Permalink
Fix compilation failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu committed Jan 2, 2025
1 parent e280a48 commit f697b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nnc/Store.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4110,7 +4110,7 @@ extension DynamicGraph {
sqlite3_wal_checkpoint_v2(OpaquePointer(sqlite), nil, SQLITE_CHECKPOINT_TRUNCATE, nil, nil)
}
if flags.contains(.readOnly) {
sqlite3_exec(_sqlite, "RELEASE nnc_open_read_only", nil, nil, nil)
sqlite3_exec(OpaquePointer(sqlite), "RELEASE nnc_open_read_only", nil, nil, nil)
}
sqlite3_close(OpaquePointer(sqlite))
}
Expand Down

0 comments on commit f697b64

Please sign in to comment.