Commit 38f6addcc6dfc3cb8a175e1e010e9f6fdb4c5dce

Authored by Chris Burton
Committed by GitHub
1 parent 17f6b01e

Add missing newline to print. (#48)

Current output
 Failed : 0x0Waiting for BCM2835/6/7

And now
 Failed : 0x0
 Waiting for BCM2835/6/7/2711...
Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -395,7 +395,7 @@ int second_stage_boot(libusb_device_handle *usb_device)
395 395 }
396 396 else
397 397 {
398   - printf("Failed : 0x%x", retcode);
  398 + printf("Failed : 0x%x\n", retcode);
399 399 }
400 400  
401 401 return retcode;
... ...