Permalink
Browse files

remove debug text

  • Loading branch information...
Reisyukaku committed Jul 30, 2018
1 parent c5c6375 commit 424c0ff9daa6ccbce28fc72a344e9a08ea0c99ee
Showing with 0 additions and 1 deletion.
  1. +0 −1 src/fs.c
View
@@ -42,7 +42,6 @@ u32 sd_mount() {
u32 fopen(const char *path, const char *mode) {
u32 m = (mode[0] == 0x77 ? (FA_WRITE|FA_CREATE_NEW) : FA_READ);
print("%kpath=%s;\tmode=%d\n%k", 0xFFF442DC, path, m, ORANGE);
if (f_open(&fp, path, m) != FR_OK)
return 0;
return 1;

0 comments on commit 424c0ff

Please sign in to comment.