Skip to content

Commit d699987

Browse files
authored
Merge pull request #21 from seanm/master
Fixed clang warning about unreachable statement
2 parents 15342fa + caf0df9 commit d699987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

liblabjackusb/labjackusb.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ static int LJUSB_libusbError(int r)
222222
case LIBUSB_SUCCESS:
223223
// No error
224224
return 0;
225-
break;
225+
226226
case LIBUSB_ERROR_IO:
227227
#if LJ_DEBUG
228228
fprintf(stderr, "libusb error: LIBUSB_ERROR_IO\n");

0 commit comments

Comments
 (0)