PR 1510/doc
	* user/chains.t: Fix code example.
This commit is contained in:
Joel Sherrill
2010-05-05 20:44:15 +00:00
parent c65f9b45e3
commit cdeead64f6
2 changed files with 6 additions and 1 deletions

View File

@@ -146,7 +146,7 @@ Add nodes with the following code:
for (i = 0; i < count; i++)
@{
foo* bar = malloc (sizeof (foo));
if (!foo)
if (!bar)
return -1;
bar->data = malloc (size);
@value{DIRPREFIX}chain_append (&chain, &bar->node);