Skip to content

Commit

Permalink
Update filesystemwatcher.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Dec 21, 2023
1 parent e7f7eab commit c2e2040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesystem/filesystemwatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ namespace Nickvision::Aura::Filesystem
{
if ((pfd.revents & POLLIN) == POLLIN)
{
std::vector<char> buff(4096);
std::vector<char> buf(4096);
while (true)
{
ssize_t len{ read(m_notify, buf, buf.size()) };
Expand Down

0 comments on commit c2e2040

Please sign in to comment.