*** empty log message ***
This commit is contained in:
parent
ce2018545d
commit
97603e3957
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: run.c,v 1.241 2006-10-22 12:39:29 bacon Exp $
|
* $Id: run.c,v 1.242 2006-10-22 14:17:40 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sse/awk/awk_i.h>
|
#include <sse/awk/awk_i.h>
|
||||||
@ -3254,10 +3254,12 @@ static int __cmp_val (
|
|||||||
return CMP_ERROR;
|
return CMP_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
sse_awk_assert (run->awk, left->type >= SSE_AWK_VAL_NIL &&
|
sse_awk_assert (run->awk,
|
||||||
left->type <= SSE_AWK_VAL_STR);
|
left->type >= SSE_AWK_VAL_NIL &&
|
||||||
sse_awk_assert (run->awk, right->type >= SSE_AWK_VAL_NIL &&
|
left->type <= SSE_AWK_VAL_STR);
|
||||||
right->type <= SSE_AWK_VAL_STR);
|
sse_awk_assert (run->awk,
|
||||||
|
right->type >= SSE_AWK_VAL_NIL &&
|
||||||
|
right->type <= SSE_AWK_VAL_STR);
|
||||||
|
|
||||||
return func[left->type*4+right->type] (run, left, right);
|
return func[left->type*4+right->type] (run, left, right);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user