add missing override

This commit is contained in:
Markus Gans 2019-08-18 21:46:38 +02:00
parent 8c90cd2a4c
commit 43de8d6150
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ class FSystemImpl : public FSystem
}
int getpwuid_r ( uid_t uid, struct passwd* pwd
, char* buf, size_t buflen, struct passwd** result )
, char* buf, size_t buflen, struct passwd** result ) override
{
return ::getpwuid_r (uid, pwd, buf, buflen, result);
}