mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-26 20:37:50 +02:00
Fix exceptions referenced in #1287
This commit is contained in:
@ -141,10 +141,10 @@ public:
|
||||
return;
|
||||
}
|
||||
}
|
||||
catch (std::exception e) {
|
||||
catch (const std::exception& e) {
|
||||
char buf[1024];
|
||||
sprintf(buf, "%016" PRIX64, serial);
|
||||
flog::error("Could not open Airspy {0}", buf);
|
||||
flog::error("Could not open Airspy {}", buf);
|
||||
}
|
||||
selectedSerial = serial;
|
||||
|
||||
|
Reference in New Issue
Block a user