1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

Fix extra ; warnings involving MakeError

This commit is contained in:
John Ericson 2019-11-10 11:14:26 -05:00
parent 70cab0587d
commit 96e6e680c1
8 changed files with 23 additions and 23 deletions

View file

@ -160,7 +160,7 @@ void readFull(int fd, unsigned char * buf, size_t count);
void writeFull(int fd, const unsigned char * buf, size_t count, bool allowInterrupts = true);
void writeFull(int fd, const string & s, bool allowInterrupts = true);
MakeError(EndOfFile, Error)
MakeError(EndOfFile, Error);
/* Read a file descriptor until EOF occurs. */
@ -333,10 +333,10 @@ void inline checkInterrupt()
_interrupted();
}
MakeError(Interrupted, BaseError)
MakeError(Interrupted, BaseError);
MakeError(FormatError, Error)
MakeError(FormatError, Error);
/* String tokenizer. */