From cd30ecf6e2fd3197d75ca82045c473c98be6889e Mon Sep 17 00:00:00 2001 From: Carl Reinke Date: Wed, 6 Sep 2017 11:33:55 -0600 Subject: C API: Make uhd_rx_streamer_last_error use SAFE_C uhd_tx_streamer_last_error and uhd_usrp_last_error use UHD_SAFE_C and so uhd_rx_streamer_last_error should as well in order to be consistent. Currently using UHD_SAFE_C_SAVE_ERROR. --- host/lib/usrp/usrp_c.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host') diff --git a/host/lib/usrp/usrp_c.cpp b/host/lib/usrp/usrp_c.cpp index a61a1cf02..5536c7946 100644 --- a/host/lib/usrp/usrp_c.cpp +++ b/host/lib/usrp/usrp_c.cpp @@ -156,7 +156,7 @@ uhd_error uhd_rx_streamer_last_error( char* error_out, size_t strbuffer_len ){ - UHD_SAFE_C_SAVE_ERROR(h, + UHD_SAFE_C( memset(error_out, '\0', strbuffer_len); strncpy(error_out, h->last_error.c_str(), strbuffer_len); ) -- cgit v1.2.3