projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
cosmetics: drop some pointless parentheses
[ffmpeg.git]
/
libavformat
/
aviobuf.c
diff --git
a/libavformat/aviobuf.c
b/libavformat/aviobuf.c
index
dbbbba5
..
6cd2cef
100644
(file)
--- a/
libavformat/aviobuf.c
+++ b/
libavformat/aviobuf.c
@@
-168,7
+168,7
@@
static void flush_buffer(AVIOContext *s)
void avio_w8(AVIOContext *s, int b)
{
- *
(s->buf_ptr)
++ = b;
+ *
s->buf_ptr
++ = b;
if (s->buf_ptr >= s->buf_end)
flush_buffer(s);
}