freebsd-ports/devel/elfsh/files/patch-vm::readln.c
Joe Marcus Clarke b8ccee89ee Fix build on -STABLE.
Submitted by:	maintainer
Noticed by:	bento
2003-09-14 19:35:31 +00:00

11 lines
322 B
C

--- vm/readln.c Wed Aug 13 16:31:55 2003
+++ vm/readln.c.patch Sun Sep 14 00:58:08 2003
@@ -43,7 +43,7 @@
char** matches=(char**) NULL;
if (start == 0)
- matches = rl_completion_matches (text, command_generator);
+ matches = (char **)completion_matches (text, command_generator);
return (matches);
}