Skip to content

Commit

Permalink
pkg: littlefs: DEBUG fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Jan 15, 2018
1 parent 4dd854d commit 1969dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/littlefs/fs/littlefs_fs.c
Expand Up @@ -222,7 +222,7 @@ static int _mkdir(vfs_mount_t *mountp, const char *name, mode_t mode)
mutex_lock(&fs->lock);

DEBUG("littlefs: mkdir: mountp=%p, name=%s, mode=%" PRIu32 "\n",
(void *)mountp, name, mode);
(void *)mountp, name, (uint32_t)mode);

int ret = lfs_mkdir(&fs->fs, name);
mutex_unlock(&fs->lock);
Expand Down

0 comments on commit 1969dd4

Please sign in to comment.