Fix return value of _get_node_record()

This commit is contained in:
Ian Barwick
2017-06-23 20:44:40 +09:00
parent 9566dc49f3
commit 28808a02ab

View File

@@ -1157,7 +1157,7 @@ _get_node_record(PGconn *conn, char *sqlquery, t_node_info *node_info)
PQclear(res);
return ntuples;
return RECORD_FOUND;
}