git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d268b79
)
doc: remove space between variable and post increment in example code
author
Janne Grunau
<janne-libav@jannau.net>
Sat, 3 Dec 2011 00:11:12 +0000
(
01:11
+0100)
committer
Janne Grunau
<janne-libav@jannau.net>
Sat, 3 Dec 2011 00:11:12 +0000
(
01:11
+0100)
doc/developer.texi
patch
|
blob
|
history
diff --git
a/doc/developer.texi
b/doc/developer.texi
index
128b46e
..
fe1f1a2
100644
(file)
--- 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: