diff options
author | Janne Grunau <janne-libav@jannau.net> | 2011-12-03 01:11:12 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2011-12-03 01:11:12 +0100 |
commit | 84994421bc8af27a7ee5bb80ca944aada237e34a (patch) | |
tree | 8cd6d05d8b29481950cd5c64b3a801553dd06fe1 /doc/developer.texi | |
parent | d268b79e3436107c11ee8bcdf9f3645368bb3fcd (diff) | |
download | ffmpeg-84994421bc8af27a7ee5bb80ca944aada237e34a.tar.gz |
doc: remove space between variable and post increment in example code
Diffstat (limited to 'doc/developer.texi')
-rw-r--r-- | doc/developer.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer.texi b/doc/developer.texi index 128b46e830..fe1f1a2652 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -52,7 +52,7 @@ The code is written in K&R C style. That means the following: The control statements are formatted by putting space betwen the statement and parenthesis in the following way: @example -for (i = 0; i < filter->input_count; i ++) @{ +for (i = 0; i < filter->input_count; i++) @{ @end example @item The case statement is always located at the same level as the switch itself: |