diff options
author | Michele Calgaro <[email protected]> | 2025-01-29 14:50:03 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-29 14:51:24 +0900 |
commit | d517cda6bdb0160be39a96712d4cf6036b920be3 (patch) | |
tree | e88b8f55be689e7ebccace3fe8d573f6d05647cb /src/3rdparty | |
parent | e0a38072cf48a6819a5cd788588267f3441d9d6a (diff) | |
download | tqt3-d517cda6bdb0160be39a96712d4cf6036b920be3.tar.gz tqt3-d517cda6bdb0160be39a96712d4cf6036b920be3.zip |
Fix FTBFS with gcc 15. This resolves issue #214
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/3rdparty')
-rw-r--r-- | src/3rdparty/sqlite/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/sqlite/shell.c b/src/3rdparty/sqlite/shell.c index 93210666e..28635a82a 100644 --- a/src/3rdparty/sqlite/shell.c +++ b/src/3rdparty/sqlite/shell.c @@ -49,7 +49,7 @@ /* Make sure isatty() has a prototype. */ -extern int isatty(); +extern int isatty(int); /* ** The following is the open SQLite database. We make a pointer |