genesys: silence compiler warning related to unused parameters

merge-requests/880/head
Ralph Little 2025-07-09 18:31:25 -07:00
rodzic 9941f15176
commit 97cd6ceca0
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -216,6 +216,9 @@ void write_tiff_file(const std::string& filename, const void* data, int depth, i
TIFFClose(image);
#else
(void)data;
(void)filename;
dbg.log(DBG_error, "Backend has been built without TIFF library support. "
"Debug images will not be saved");
#endif