return NULL;
}
- return fmt_human_2((rxbytes - oldrxbytes) * 1000 / interval);
+ return fmt_human((rxbytes - oldrxbytes) * 1000 / interval,
+ 1024);
}
const char *
return NULL;
}
- return fmt_human_2((txbytes - oldtxbytes) * 1000 / interval);
+ return fmt_human((txbytes - oldtxbytes) * 1000 / interval,
+ 1024);
}
#elif defined(__OpenBSD__)
#include <string.h>
return NULL;
}
- return fmt_human_2((rxbytes - oldrxbytes) * 1000 / interval);
+ return fmt_human((rxbytes - oldrxbytes) * 1000 / interval,
+ 1024);
}
const char *
return NULL;
}
- return fmt_human_2((txbytes - oldtxbytes) * 1000 / interval);
+ return fmt_human((txbytes - oldtxbytes) * 1000 / interval,
+ 1024);
}
#endif