summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/qt-faststart.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c
index ffaeac0b6c..fc82abaf9c 100644
--- a/tools/qt-faststart.c
+++ b/tools/qt-faststart.c
@@ -137,9 +137,9 @@ int main(int argc, char *argv[])
atom_size);
goto error_out;
}
- if ( fseeko(infile, -ATOM_PREAMBLE_SIZE, SEEK_CUR)
- || fread(ftyp_atom, atom_size, 1, infile) != 1
- || (start_offset = ftello(infile))<0) {
+ if (fseeko(infile, -ATOM_PREAMBLE_SIZE, SEEK_CUR) ||
+ fread(ftyp_atom, atom_size, 1, infile) != 1 ||
+ (start_offset = ftello(infile))<0) {
perror(argv[1]);
goto error_out;
}
@@ -155,7 +155,7 @@ int main(int argc, char *argv[])
} else {
ret = fseeko(infile, atom_size - ATOM_PREAMBLE_SIZE, SEEK_CUR);
}
- if(ret) {
+ if (ret) {
perror(argv[1]);
goto error_out;
}