mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 04:37:55 +00:00
Kernel: Handle string format errors in FileSystem APIs :^)
This commit is contained in:
committed by
Andreas Kling
parent
e626d7098d
commit
fa517b213a
@@ -134,7 +134,7 @@ ErrorOr<size_t> FIFO::write(OpenFileDescription& fd, u64, const UserOrKernelBuff
|
||||
|
||||
ErrorOr<NonnullOwnPtr<KString>> FIFO::pseudo_path(const OpenFileDescription&) const
|
||||
{
|
||||
return KString::try_create(String::formatted("fifo:{}", m_fifo_id));
|
||||
return KString::formatted("fifo:{}", m_fifo_id);
|
||||
}
|
||||
|
||||
ErrorOr<void> FIFO::stat(::stat& st) const
|
||||
|
||||
Reference in New Issue
Block a user