diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-11-16 10:51:31 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-11-16 10:51:31 +0100 |
commit | 6c6c8e91efb8a534afb629897b402bf3f3945948 (patch) | |
tree | 58aa454b9ed0bf12c549f287e292b2e22301a3df | |
parent | 0762893c48c7f5a6532ee35ad188c80b8a6f3981 (diff) | |
download | samba-6c6c8e91efb8a534afb629897b402bf3f3945948.tar.gz |
README.Coding: fix error in "good example"
metze
-rw-r--r-- | README.Coding | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.Coding b/README.Coding index 981da6c96cb..3b7266e3172 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; |