Skip to content

Commit

Permalink
Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewallen committed Jun 25, 2018
1 parent 33075a1 commit 5d054c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testing/read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ int main(int argc, const char **argv) {

fkfs_t fs;
if (!fkfs_create(&fs)) {
return false;
return 2;
}

if (!sd_raw_file_initialize(&fs.sd, argv[1])) {
Expand Down
2 changes: 1 addition & 1 deletion testing/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ int main(int argc, const char **argv) {

fkfs_t fs;
if (!fkfs_create(&fs)) {
return false;
return 2;
}

if (!sd_raw_file_initialize(&fs.sd, argv[1])) {
Expand Down

0 comments on commit 5d054c7

Please sign in to comment.