synth error

This commit is contained in:
CHIEFSOFT\ameye
2024-07-23 09:07:55 -04:00
parent 6f8f050950
commit 42e5be9630
+1 -1
View File
@@ -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++) {
map<const char*, const char*>f = pgsql_fetch_assoc(res, i);
CVars rec;