diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2006-01-09 20:53:51 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 08:01:52 -0800 |
commit | dc3d28d02e3e83c3147b2afc5e19e3b58d23f31b (patch) | |
tree | d8db50512067ad53ce999dfea7cf6aa79a416234 /Documentation | |
parent | d060a3218f6a046509fa31939ce1a671b0359086 (diff) | |
download | linux-3.10-dc3d28d02e3e83c3147b2afc5e19e3b58d23f31b.tar.gz linux-3.10-dc3d28d02e3e83c3147b2afc5e19e3b58d23f31b.tar.bz2 linux-3.10-dc3d28d02e3e83c3147b2afc5e19e3b58d23f31b.zip |
[PATCH] CodingStyle correction
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/CodingStyle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle index ce780ef648f..ce5d2c038cf 100644 --- a/Documentation/CodingStyle +++ b/Documentation/CodingStyle @@ -199,7 +199,7 @@ The rationale is: modifications are prevented - saves the compiler work to optimize redundant code away ;) -int fun(int ) +int fun(int a) { int result = 0; char *buffer = kmalloc(SIZE); |