From 0a6875788a5ebbd97b8023a49d417f5e3f678333 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Mon, 7 Aug 2023 20:05:33 +0800 Subject: [PATCH] soapysdr: remove some debug messages --- sdr_soapy.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdr_soapy.c b/sdr_soapy.c index ac671d54e..96bb4a6f4 100644 --- a/sdr_soapy.c +++ b/sdr_soapy.c @@ -461,13 +461,11 @@ void soapyRun() void soapyClose() { - fprintf(stderr, "close stream\n"); if (SOAPY.stream) { SoapySDRDevice_closeStream(SOAPY.dev, SOAPY.stream); SOAPY.stream = NULL; } - fprintf(stderr, "close device\n"); if (SOAPY.dev) { SoapySDRDevice_unmake(SOAPY.dev); SOAPY.dev = NULL;