Move userspace to a templated StrFormat.
This commit is contained in:
parent
d9df1212b7
commit
26b61db021
25 changed files with 263 additions and 217 deletions
|
|
@ -28,7 +28,7 @@ glcr::ErrorCode VFSServer::HandleOpenFile(const OpenFileRequest& request,
|
|||
ASSIGN_OR_RETURN(files, driver_.ReadDirectory(files.at(j).inode));
|
||||
}
|
||||
}
|
||||
dbgln("Directory '%s' not found.", glcr::String(path_tokens.at(i)).cstr());
|
||||
dbgln("Directory '{}' not found.", glcr::String(path_tokens.at(i)).cstr());
|
||||
return glcr::NOT_FOUND;
|
||||
}
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ glcr::ErrorCode VFSServer::HandleOpenFile(const OpenFileRequest& request,
|
|||
}
|
||||
}
|
||||
if (!region) {
|
||||
dbgln("File '%s' not found.",
|
||||
dbgln("File '{}' not found.",
|
||||
glcr::String(path_tokens.at(path_tokens.size() - 1)).cstr());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue