diff options
Diffstat (limited to 'python-ethtool/ethtool.c')
-rw-r--r-- | python-ethtool/ethtool.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/python-ethtool/ethtool.c b/python-ethtool/ethtool.c index a471726..7e7ff1d 100644 --- a/python-ethtool/ethtool.c +++ b/python-ethtool/ethtool.c @@ -969,9 +969,7 @@ PyMODINIT_FUNC initethtool(void) PyModule_AddObject(m, "etherinfo", (PyObject *)ðtool_etherinfoType); // Prepare the ethtool IPv6 and IPv4 address types - if (PyType_Ready(ðtool_netlink_ipv6_address_Type) < 0) - return; - if (PyType_Ready(ðtool_netlink_ipv4_address_Type)) + if (PyType_Ready(ðtool_netlink_ip_address_Type)) return; // Setup constants |