View | Details | Raw Unified | Return to bug 192690 | Differences between
and this patch

Collapse All | Expand All

(-)./kd_search.c (-2 / +2 lines)
Lines 1058-1065 Link Here
1058
  if (we->len > sizeof (word))
1058
  if (we->len > sizeof (word))
1059
    {
1059
    {
1060
      s->err->fatal = 0;
1060
      s->err->fatal = 0;
1061
      sprintf (s->err->buf, "search word is greater than %d characters",
1061
      sprintf (s->err->buf, "search word is greater than %lu characters",
1062
	       sizeof (word));
1062
	       (unsigned long)sizeof (word));
1063
      return (0);
1063
      return (0);
1064
    }
1064
    }
1065
1065

Return to bug 192690