diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-11-05 10:27:50 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-11-05 10:27:50 +0100 |
commit | ced058002d01024a18e9d9e2dda2a9af5854e232 (patch) | |
tree | b8126fdfb63d0b282e040391ae94b63e1f93a6e7 /ifpps.c | |
parent | f15857041821ba75eb608726c2aae15b4177b1f1 (diff) |
ifpps: Remove unnecessary memset before ethtool_drvinf()
ethtool_drvinf() already clears the struct ethtool_drvinfo, so there is
no need to do it manually before calling it.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'ifpps.c')
-rw-r--r-- | ifpps.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -313,7 +313,6 @@ retry: } if (ret == -EINVAL && try == 0) { - memset(&drvinf, 0, sizeof(drvinf)); if (ethtool_drvinf(ifname, &drvinf) < 0) goto done; @@ -711,7 +710,6 @@ static void screen_header(WINDOW *screen, const char *ifname, int *voff, int link = ethtool_link(ifname); unsigned int cpus = get_number_cpus(); - memset(&drvinf, 0, sizeof(drvinf)); ethtool_drvinf(ifname, &drvinf); memset(buff, 0, sizeof(buff)); |