1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

README.Coding: fix error in "good example"

metze
This commit is contained in:
Stefan Metzmacher 2009-11-16 10:51:31 +01:00
parent 0762893c48
commit 6c6c8e91ef

View 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;