ports/devel/elfsh/files/patch-modules_modgraph.c
Baptiste Daroussin 3c4a170b07 Fix collision with dprintf(3)
While here, regenerate patches and move some post-patch into an already existing
patch
2016-07-29 23:02:48 +00:00

11 lines
334 B
C

--- modules/modgraph.c.orig 2003-08-21 01:11:03 UTC
+++ modules/modgraph.c
@@ -183,7 +183,7 @@ void dump_assembly(int fd, elfshblk_t *b
else
{
name = elfsh_reverse_metasym(world.current, blk->vaddr, &off);
- dprintf(fd, "%s_%08x", name, off);
+ _dprintf(fd, "%s_%08x", name, off);
}
free(buffer);