mirror of
https://github.com/PDP-10/klh10.git
synced 2026-04-10 14:49:10 +00:00
Fix call to memset (discovered due to compiler warning from Travis)
This commit is contained in:
@@ -185,7 +185,7 @@ osn_iftab_init(void)
|
||||
struct ifent *ife;
|
||||
|
||||
/* Start out with empty table */
|
||||
memset(&iftab[0], sizeof(iftab), 0);
|
||||
memset(&iftab[0], 0, sizeof(iftab));
|
||||
iftab_nifs = 0;
|
||||
|
||||
#if HAVE_GETIFADDRS
|
||||
|
||||
Reference in New Issue
Block a user