Fix regression in ip address delete

9c5e585c3faa73941cedcc70cdff680f403c17bc flipped around two parameters
as part of a bug fix.  This fixes #263.

Tested: Inspection only.

Change-Id: I2c8dea2e947fd34784475c0eb0144baa3b68dcb5
Signed-off-by: Ed Tanous <edtanous@google.com>
diff --git a/redfish-core/lib/ethernet.hpp b/redfish-core/lib/ethernet.hpp
index 50287b0..0f35f7e 100644
--- a/redfish-core/lib/ethernet.hpp
+++ b/redfish-core/lib/ethernet.hpp
@@ -1366,8 +1366,8 @@
             if (nicIpEntry != ipv4Data.cend())
             {
                 deleteAndCreateIPAddress(IpVersion::IpV4, ifaceId,
-                                         nicIpEntry->id, prefixLength, *gateway,
-                                         *address, asyncResp);
+                                         nicIpEntry->id, prefixLength, *address,
+                                         *gateway, asyncResp);
                 nicIpEntry = getNextStaticIpEntry(++nicIpEntry,
                                                   ipv4Data.cend());
             }
@@ -1500,7 +1500,7 @@
             if (nicIpEntry != ipv6Data.end())
             {
                 deleteAndCreateIPAddress(IpVersion::IpV6, ifaceId,
-                                         nicIpEntry->id, prefix, "", *addr,
+                                         nicIpEntry->id, prefix, *addr, "",
                                          asyncResp);
                 nicIpEntry = getNextStaticIpEntry(++nicIpEntry,
                                                   ipv6Data.cend());