Avoid unused variable warning

This commit is contained in:
Nyall Dawson 2021-02-10 15:07:24 +10:00
parent 4d75e1e4a6
commit c4a1bd1e22

View File

@ -15,6 +15,7 @@ bool QgisUntwine::start(Options& options)
{
int fd[2];
int ret = ::pipe(fd);
(void)ret;
m_pid = ::fork();