From 8569eb93a7fa91a446fb211d31fb6e227d0aab65 Mon Sep 17 00:00:00 2001 From: "powwow@askgustav.com" Date: Sun, 7 Mar 2021 22:48:08 +0100 Subject: add missing braces diff --git a/src/eval.c b/src/eval.c index 1a64108..f803fe1 100644 --- a/src/eval.c +++ b/src/eval.c @@ -789,8 +789,9 @@ static int exe_op(operator *op) /* src == empty string. just return it */ check_delete(&o2); o1.txt = src; - if (!REAL_ERROR) + if (!REAL_ERROR) { p=&o1; ret=1; + } break; } @@ -915,8 +916,9 @@ static int exe_op(operator *op) } check_delete(&o2); o1.txt = dst; - if (!REAL_ERROR) + if (!REAL_ERROR) { p=&o1; ret=1; + } break; case (int)colon_question: case (int)point_question: -- cgit v0.10.2