Skip to content

Commit

Permalink
Don't return error if there are no images on card
Browse files Browse the repository at this point in the history
  • Loading branch information
petabyt committed May 19, 2024
1 parent 4b07371 commit 098bd26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tester.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ int fuji_init_setup(struct PtpRuntime *r) {
int fuji_test_filesystem(struct PtpRuntime *r) {
if (fuji_known.num_objects == 0) {
tester_fail("There are no images on the SD card!");
return 1;
return 0;
}

if (fuji_known.remote_version == -1) {
Expand Down

0 comments on commit 098bd26

Please sign in to comment.