Put back a blank line unintentionally deleted

This commit is contained in:
Stephen Casner 2021-02-15 00:16:36 -08:00 committed by Olaf Seibert
parent 05fc94ce90
commit ef8afb9e5f

View File

@ -721,6 +721,7 @@ EX_TREE *evaluate(
left = evaluate(tp->data.child.left, undef);
right = evaluate(tp->data.child.right, undef);
/* Operate if both are literals */
if (left->type == EX_LIT && right->type == EX_LIT) {
int shift = right->data.lit;