README.Coding: fix error in "good example"
authorStefan Metzmacher <metze@samba.org>
Mon, 16 Nov 2009 09:51:31 +0000 (10:51 +0100)
committerStefan Metzmacher <metze@samba.org>
Mon, 16 Nov 2009 09:51:31 +0000 (10:51 +0100)
metze

README.Coding

index 981da6c96cbda435795a6f4eae821a9fb8aec0db..3b7266e3172c9b94e8e07182e75f0ee867cbe42e 100644 (file)
@@ -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;