From 9e4f6c2d5a6a3a699e2606643f95e886835fa432 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 25 Oct 2015 11:39:49 +0100 Subject: [PATCH 1/1] Fix an error message. --- bmusb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bmusb.cpp b/bmusb.cpp index e55d85d..6157a3b 100644 --- a/bmusb.cpp +++ b/bmusb.cpp @@ -732,7 +732,7 @@ void BMUSBCapture::configure_card() } rc = libusb_set_interface_alt_setting(devh, /*interface=*/0, /*alternate_setting=*/2); if (rc < 0) { - fprintf(stderr, "Error setting alternate 1: %s\n", libusb_error_name(rc)); + fprintf(stderr, "Error setting alternate 2: %s\n", libusb_error_name(rc)); exit(1); } #if 0 -- 2.39.2