Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools/headerversions.c: fix build without SQLite
Commit 5318459 broke the build without SQLite because this code: new = tal_fmt(NULL, template, IF_SQLITE3(sqlite3_libversion_number())); preprocesses into: new = tal_fmt(NULL, template, ); which has a syntax error. Fix it by moving the comma into the macro argument. Fixes: 5318459 Changelog-None
- Loading branch information