| 326 | } |
| 327 | |
| 328 | void db_warn(const struct db *db, const char *fmt, ...) |
| 329 | { |
| 330 | va_list ap; |
| 331 | va_start(ap, fmt); |
| 332 | db->errorfn(db->errorfn_arg, false, fmt, ap); |
| 333 | va_end(ap); |
| 334 | } |
| 335 | |
| 336 | struct db *db_open_(const tal_t *ctx, const char *filename, |
| 337 | bool developer, |
no outgoing calls
no test coverage detected