Improve punctuation in error message

This commit is contained in:
MCUdude 2022-09-30 20:03:04 +02:00
parent e1a317c670
commit 521155c1c2
1 changed files with 1 additions and 1 deletions

View File

@ -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 // Give a proper error if we were not compiled with libusb
static int flip2_nousb_open(PROGRAMMER* pgm, const char* name) { 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; return -1;
} }