From 42e5be9630998b35f92495dcc7772d622078f699 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 23 Jul 2024 09:07:55 -0400 Subject: [PATCH] synth error --- wrenchboard/src/shared_tool/family_acc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrenchboard/src/shared_tool/family_acc.cc b/wrenchboard/src/shared_tool/family_acc.cc index 432ff86a..203f4188 100644 --- a/wrenchboard/src/shared_tool/family_acc.cc +++ b/wrenchboard/src/shared_tool/family_acc.cc @@ -152,7 +152,7 @@ long WrenchRelativesSettings(CVars in, CVars &out){ { res = pgsql_query("SELECT * FROM family_relative_kids WHERE relative_uid::text = '%s'::text AND member_id=%lu AND add_status > 0", in["relative_uid"].c_str(),out["member_id"].Long() ); if (res != NULL && pgsql_num_rows(res) > 0) { - out["total_kid"] = && pgsql_num_rows(res); + out["total_kid"] = pgsql_num_rows(res); for (int i = 0, n = pgsql_num_rows(res); i < n; i++) { mapf = pgsql_fetch_assoc(res, i); CVars rec;