Skip to content

Commit b4f8eb5

Browse files
committed
Checkpatch fix
1 parent a182de1 commit b4f8eb5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/dp_nat.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,8 +792,7 @@ int dp_allocate_sync_snat_port(const struct netnat_portmap_key *portmap_key,
792792
if (ret == -EEXIST) {
793793
rte_free(sync_metadata);
794794
return DP_OK; // ignore duplicates, trust the primary dpservice
795-
}
796-
else if (ret != -ENOENT) {
795+
} else if (ret != -ENOENT) {
797796
rte_free(sync_metadata);
798797
return ret;
799798
}

0 commit comments

Comments
 (0)