From: Uwe Bonnes Date: Thu, 7 Jun 2012 16:13:43 +0000 (+0200) Subject: Add \n to WLOG when no STLINK found X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=0e7ee109f6c37dd2f1acfdc861eb12803e96eabb;p=fw%2Fstlink Add \n to WLOG when no STLINK found --- diff --git a/src/stlink-usb.c b/src/stlink-usb.c index 72ffda1..a25f7ec 100644 --- a/src/stlink-usb.c +++ b/src/stlink-usb.c @@ -652,7 +652,7 @@ stlink_t* stlink_open_usb(const int verbose) { if (slu->usb_handle == NULL) { slu->usb_handle = libusb_open_device_with_vid_pid(slu->libusb_ctx, USB_ST_VID, USB_STLINK_PID); if (slu->usb_handle == NULL) { - WLOG("Couldn't find any ST-Link/V2 devices"); + WLOG("Couldn't find any ST-Link/V2 devices\n"); goto on_error; } slu->protocoll = 1;