🎨 fix inconsistent indentation

This commit is contained in:
DrMaxNix 2022-09-16 18:01:51 +02:00
parent f624a2ed7e
commit 66f207399f
1 changed files with 4 additions and 4 deletions

View File

@ -482,15 +482,15 @@ void usbreset(){
// DO RESET // // DO RESET //
// send command // send command
if(ioctl(bus, USBDEVFS_RESET, 0) < 0){ if(ioctl(bus, USBDEVFS_RESET, 0) < 0){
fprintf(stderr, "[WARN ] Unable to do usbreset\n"); fprintf(stderr, "[WARN ] Unable to do usbreset\n");
return; return;
} }
// success! // success!
fprintf(stderr, "[INFO ] Usbreset successful\n"); fprintf(stderr, "[INFO ] Usbreset successful\n");
// close file // close file
close(bus); close(bus);
} }
/* /*