mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix for warnings: ignoring return value of ‘write’, declared with attribute warn_unused_result.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e41416359
commit
6bbba3cab4
@ -102,12 +102,19 @@ int getOutFile() {
|
||||
{
|
||||
int PTy = ArgumentInfo;
|
||||
int Zeros = 0;
|
||||
write(OutFile, &PTy, sizeof(int));
|
||||
write(OutFile, &SavedArgsLength, sizeof(unsigned));
|
||||
write(OutFile, SavedArgs, SavedArgsLength);
|
||||
if (write(OutFile, &PTy, sizeof(int)) < 0 ||
|
||||
write(OutFile, &SavedArgsLength, sizeof(unsigned)) < 0 ||
|
||||
write(OutFile, SavedArgs, SavedArgsLength) < 0 ) {
|
||||
fprintf(stderr,"error: unable to write to output file.");
|
||||
exit(0);
|
||||
}
|
||||
/* Pad out to a multiple of four bytes */
|
||||
if (SavedArgsLength & 3)
|
||||
write(OutFile, &Zeros, 4-(SavedArgsLength&3));
|
||||
if (SavedArgsLength & 3) {
|
||||
if (write(OutFile, &Zeros, 4-(SavedArgsLength&3)) < 0) {
|
||||
fprintf(stderr,"error: unable to write to output file.");
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return(OutFile);
|
||||
|
Loading…
Reference in New Issue
Block a user