fix build on android due to new librtlsdr function name

pull/1285/head
AlexandreRouma 2024-01-17 06:41:25 +01:00
rodzic e710b6c6dc
commit 6fc41a81a7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -171,7 +171,7 @@ public:
#ifndef __ANDROID__
int oret = rtlsdr_open(&openDev, id);
#else
int oret = rtlsdr_open_fd(&openDev, devFd);
int oret = rtlsdr_open_sys_dev(&openDev, devFd);
#endif
if (oret < 0) {