Skip to content

Commit

Permalink
MT#62053 fix spacing
Browse files Browse the repository at this point in the history
Change-Id: If3c4b16d96a4ea5d318cf96e809938480734eb13
  • Loading branch information
rfuchs committed Feb 6, 2025
1 parent 2b40e7b commit ee99a44
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions lib/get_all_rtp_for_host
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ IF status.item(hosts.$X_host.status);
name = X_name
address = X_ip
adv_addr = X_adv_ip
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
};
out.push(X_obj);
ELSE;
Expand Down Expand Up @@ -113,8 +113,8 @@ IF status.item(hosts.$X_host.status);
X_obj = {
name = X_name
address = X_ip
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
};
out.push(X_obj);
ELSE;
Expand Down
8 changes: 4 additions & 4 deletions lib/get_all_rtp_for_instance
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ FOREACH X_ifc IN argv.instance.interfaces;
name = X_name
address = X_ip
adv_addr = X_adv_ip
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
};
out.push(X_obj);
ELSE;
Expand Down Expand Up @@ -103,8 +103,8 @@ FOREACH X_ifc IN argv.instance.interfaces;
X_obj = {
name = X_name
address = X_ip
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
port_min = X_ifc.rtp_port_min || 0
port_max = X_ifc.rtp_port_max || 0
};
out.push(X_obj);
ELSE;
Expand Down

0 comments on commit ee99a44

Please sign in to comment.