1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

sys/vfs: DEBUG fix

This commit is contained in:
Kaspar Schleiser 2017-10-20 22:59:40 +02:00
parent 8a74210b31
commit dcc0804e10

View File

@ -736,7 +736,7 @@ int vfs_normalize_path(char *buf, const char *path, size_t buflen)
}
while(path <= path_end) {
DEBUG("vfs_normalize_path: + %d \"%.*s\" <- \"%s\" (%p)\n", npathcomp, len, buf, path, path);
DEBUG("vfs_normalize_path: + %d \"%.*s\" <- \"%s\" (%p)\n", npathcomp, (int)len, buf, path, path);
if (path[0] == '\0') {
break;
}