Squelch warnings.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8729 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman
2003-09-27 22:26:37 +00:00
parent 26c7d8b7e0
commit 00ce84066f
2 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ int execve(const char *filename, char *const argv[], char *const envp[])
/* Read the header from the file */
ssize_t bytesRead = read(file, header, headerSize);
close(file);
if (bytesRead != headerSize) return EIO;
if (bytesRead != (ssize_t)headerSize) return EIO;
if (!memcmp(llvmHeader, header, headerSize)) {
/*
* This is a bytecode file, so execute the JIT with the program and