Browse Source

lavf/file: cosmetic: Remove superfluous ternary operator

tags/n1.0
Alexander Strasser 13 years ago
parent
commit
585bd4922a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/file.c

+ 1
- 1
libavformat/file.c View File

@@ -91,7 +91,7 @@ static int file_open(URLContext *h, const char *filename, int flags)
return AVERROR(errno);
h->priv_data = (void *) (intptr_t) fd;

h->is_streamed = (0==fstat(fd, &st) && S_ISFIFO(st.st_mode)) ? 1 : 0;
h->is_streamed = 0==fstat(fd, &st) && S_ISFIFO(st.st_mode);

return 0;
}


Loading…
Cancel
Save