mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 00:30:57 +00:00
Correct a typo.
This commit is contained in:
parent
abd9704d26
commit
36e359e2ee
1 changed files with 2 additions and 2 deletions
|
@ -255,7 +255,7 @@ dagnode_match (const dagnode_t *n, const daglabel_t *op,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
op_is_identifer (operand_t *op)
|
op_is_identifier (operand_t *op)
|
||||||
{
|
{
|
||||||
while (op->op_type == op_alias)
|
while (op->op_type == op_alias)
|
||||||
op = op->o.alias;
|
op = op->o.alias;
|
||||||
|
@ -280,7 +280,7 @@ dagnode_attach_label (dagnode_t *n, daglabel_t *l)
|
||||||
if (!l->op)
|
if (!l->op)
|
||||||
internal_error (0, "attempt to attach operator label to dagnode "
|
internal_error (0, "attempt to attach operator label to dagnode "
|
||||||
"identifers");
|
"identifers");
|
||||||
if (!op_is_identifer (l->op))
|
if (!op_is_identifier (l->op))
|
||||||
internal_error (0, "attempt to attach non-identifer label to dagnode "
|
internal_error (0, "attempt to attach non-identifer label to dagnode "
|
||||||
"identifers");
|
"identifers");
|
||||||
if (l->dagnode) {
|
if (l->dagnode) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue