Skip to content

Commit aa7d5b5

Browse files
committed
Tabs to spaces
1 parent af21b11 commit aa7d5b5

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,24 @@ while true {
6262
let rc = apr_dbd_get_row(driverHandle, pool, res, &row, Int32(-1))
6363
guard rc == 0 else { break }
6464

65-
print("record:")
65+
print("record:")
6666
let colCount = apr_dbd_num_cols(driverHandle, res)
6767
for colIdx in 0..<colCount {
68-
let name : String
69-
if let cstr = apr_dbd_get_name(driverHandle, res, colIdx) {
70-
name = String(cString: cstr)
71-
}
72-
else {
73-
name = "[\(colIdx)]"
74-
}
68+
let name : String
69+
if let cstr = apr_dbd_get_name(driverHandle, res, colIdx) {
70+
name = String(cString: cstr)
71+
}
72+
else {
73+
name = "[\(colIdx)]"
74+
}
7575

76-
if let cstr = apr_dbd_get_entry(driverHandle, row, colIdx) {
77-
print(" \(name) = \(String(cString: cstr))")
78-
}
79-
else {
80-
print(" \(name) IS NULL")
81-
}
82-
}
76+
if let cstr = apr_dbd_get_entry(driverHandle, row, colIdx) {
77+
print(" \(name) = \(String(cString: cstr))")
78+
}
79+
else {
80+
print(" \(name) IS NULL")
81+
}
82+
}
8383
}
8484
```
8585

0 commit comments

Comments
 (0)