1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-20 17:29:36 +01:00

receiveContents(): unsigned int -> size_t

This commit is contained in:
Eelco Dolstra 2020-07-30 13:00:30 +02:00
parent 3f3740d676
commit ebee2b7852
3 changed files with 4 additions and 4 deletions

View file

@ -86,7 +86,7 @@ struct NarAccessor : public FSAccessor
parents.top()->start = pos;
}
void receiveContents(unsigned char * data, unsigned int len) override
void receiveContents(unsigned char * data, size_t len) override
{ }
void createSymlink(const Path & path, const string & target) override