Commit ed46529d authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 9160424c
...@@ -457,12 +457,14 @@ func (t *tConnection) Abort() { ...@@ -457,12 +457,14 @@ func (t *tConnection) Abort() {
} }
func (t *tDB) fatalif(err error) { func (t *tDB) fatalif(err error) {
t.Helper()
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
} }
func (t *tConnection) fatalif(err error) { func (t *tConnection) fatalif(err error) {
t.Helper()
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
......
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