diff options
author | EuAndreh <eu@euandre.org> | 2024-10-02 13:53:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-02 13:53:06 -0300 |
commit | 90305ec4c4f39aaf0779ef94ad07a23659e324a1 (patch) | |
tree | 0a5bea58a126ced96c565ef576ec33b454337bbb /tests/functional | |
parent | Makefile: Setup benchmarking skeleton (diff) | |
download | golite-90305ec4c4f39aaf0779ef94ad07a23659e324a1.tar.gz golite-90305ec4c4f39aaf0779ef94ad07a23659e324a1.tar.xz |
tests/functional/streq.c: Explicitly ignore unused `errmsg` argument
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/streq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/functional/streq.c b/tests/functional/streq.c index bbf3763..70a6aa8 100644 --- a/tests/functional/streq.c +++ b/tests/functional/streq.c @@ -23,6 +23,7 @@ sqlite3_extension_init( const sqlite3_api_routines *const api ) { SQLITE_EXTENSION_INIT2(api); + (void)errmsg; return sqlite3_create_function( db, "streq", |