From 521155c1c2eaa37eddf2a956b26aeebf2c258af8 Mon Sep 17 00:00:00 2001 From: MCUdude Date: Fri, 30 Sep 2022 20:03:04 +0200 Subject: [PATCH] Improve punctuation in error message --- src/flip2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flip2.c b/src/flip2.c index 25963661..5e74dfe9 100644 --- a/src/flip2.c +++ b/src/flip2.c @@ -940,7 +940,7 @@ enum flip2_mem_unit flip2_mem_unit(const char *name) { // Give a proper error if we were not compiled with libusb static int flip2_nousb_open(PROGRAMMER* pgm, const char* name) { - avrdude_message(MSG_INFO, "%s: error: No usb support. Please compile again with libusb installed.\n", progname); + avrdude_message(MSG_INFO, "%s: error, no USB support; please compile with libusb installed\n", progname); return -1; }