You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
427 B

  1. --- a/plugin_netinfo.c
  2. +++ b/plugin_netinfo.c
  3. @@ -264,7 +264,7 @@ static void my_netmask_short(RESULT * re
  4. sin = get_netmask(arg1);
  5. if (NULL != sin) {
  6. logval = (long double) (get_netmask(arg1)->sin_addr.s_addr);
  7. - netlen = (int) rint(log2l(logval) / log2l(2.0));
  8. + netlen = (int) rint(log2f(logval) / log2f(2.0));
  9. qprintf(value, sizeof(value), "/%d", netlen);
  10. } else {
  11. qprintf(value, sizeof(value), "/?");