[FFmpeg-cvslog] doc: remove space between variable and post increment in example code
Janne Grunau
git at videolan.org
Sun Dec 4 01:09:26 CET 2011
ffmpeg | branch: master | Janne Grunau <janne-libav at jannau.net> | Sat Dec 3 01:11:12 2011 +0100| [84994421bc8af27a7ee5bb80ca944aada237e34a] | committer: Janne Grunau
doc: remove space between variable and post increment in example code
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=84994421bc8af27a7ee5bb80ca944aada237e34a
---
doc/developer.texi | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/doc/developer.texi b/doc/developer.texi
index 128b46e..fe1f1a2 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:
More information about the ffmpeg-cvslog
mailing list