summaryrefslogtreecommitdiffstats
path: root/README.Coding
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-11-16 10:51:31 +0100
committerStefan Metzmacher <metze@samba.org>2009-11-16 10:51:31 +0100
commit6c6c8e91efb8a534afb629897b402bf3f3945948 (patch)
tree58aa454b9ed0bf12c549f287e292b2e22301a3df /README.Coding
parent0762893c48c7f5a6532ee35ad188c80b8a6f3981 (diff)
downloadsamba-6c6c8e91efb8a534afb629897b402bf3f3945948.tar.gz
samba-6c6c8e91efb8a534afb629897b402bf3f3945948.tar.xz
samba-6c6c8e91efb8a534afb629897b402bf3f3945948.zip
README.Coding: fix error in "good example"
metze
Diffstat (limited to 'README.Coding')
-rw-r--r--README.Coding2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.Coding b/README.Coding
index 981da6c96c..3b7266e317 100644
--- a/README.Coding
+++ b/README.Coding
@@ -183,7 +183,7 @@ Good Examples::
int *z = NULL;
int ret = 0;
- if ( y < 10 ) {
+ if (y < 10) {
z = malloc(sizeof(int)*y);
if (!z) {
ret = 1;