Chameleon

Chameleon Commit Details

Date:2010-10-28 18:50:31 (13 years 5 months ago)
Author:mozo
Commit:619
Parents: 618
Message:by Azimutz: "Wrap up" some leftovers: TRUE/FALSE --> true/false
Changes:
M/trunk/i386/libsaio/aml_generator.c

File differences

trunk/i386/libsaio/aml_generator.c
2222
2323
2424
25
25
2626
2727
2828
2929
30
30
3131
3232
3333
......
4343
4444
4545
46
46
4747
4848
49
49
5050
5151
5252
case AML_CHUNK_QWORD:
case AML_CHUNK_ALIAS:
verbose("aml_add_to_parent: Node isn't supports child nodes!");
return FALSE;
return false;
case AML_CHUNK_NAME:
if (parent->First)
{
verbose("aml_add_to_parent: Name node could have only one child node!");
return FALSE;
return false;
}
break;
parent->Last = node;
return TRUE;
return true;
}
return FALSE;
return false;
}
struct aml_chunk* aml_create_node(struct aml_chunk* parent)

Archive Download the corresponding diff file

Revision: 619