From 6c6c8e91efb8a534afb629897b402bf3f3945948 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 16 Nov 2009 10:51:31 +0100 Subject: README.Coding: fix error in "good example" metze --- README.Coding | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.Coding') 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; -- cgit