diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2014-05-10 00:26:07 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2014-05-10 00:26:07 +0000 |
commit | 9518b1777be39f8f996025737b2eaa49cdc3fb74 (patch) | |
tree | 57816f0efe3dd1c6075a076b3930a80934a2e69a /mail/xbuffy/files/patch-libdyn__dyn_insert.c | |
parent | - Support staging (diff) |
- Support staging
- Use meaningful patch names
- Convert USE_GMAKE to USES
Notes
Notes:
svn path=/head/; revision=353551
Diffstat (limited to 'mail/xbuffy/files/patch-libdyn__dyn_insert.c')
-rw-r--r-- | mail/xbuffy/files/patch-libdyn__dyn_insert.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mail/xbuffy/files/patch-libdyn__dyn_insert.c b/mail/xbuffy/files/patch-libdyn__dyn_insert.c new file mode 100644 index 000000000000..893ecc332448 --- /dev/null +++ b/mail/xbuffy/files/patch-libdyn__dyn_insert.c @@ -0,0 +1,29 @@ +diff -ur ../../xbuffy-3.3.bl.3/libdyn/dyn_insert.c ./libdyn/dyn_insert.c +--- ../../xbuffy-3.3.bl.3/libdyn/dyn_insert.c Fri Feb 20 17:54:14 1998 ++++ ./libdyn/dyn_insert.c Tue May 8 13:13:43 2001 +@@ -11,6 +11,7 @@ + */ + + #include <stdio.h> ++#include <string.h> + #include "dynP.h" + + int DynInsert(obj, index, els, num) +@@ -35,7 +36,7 @@ + } + + if (obj->debug) +- fprintf(stderr,"dyn: insert: Moving %d bytes from %d + %d to + %d\n", ++ fprintf(stderr,"dyn: insert: Moving %d bytes from %p + %d to + %d\n", + (obj->num_el-index)*obj->el_size, obj->array, + obj->el_size*index, obj->el_size*(index+num)); + +@@ -46,7 +47,7 @@ + (obj->num_el-index)*obj->el_size); + + if (obj->debug) +- fprintf(stderr, "dyn: insert: Copying %d bytes from %d to %d + %d\n", ++ fprintf(stderr, "dyn: insert: Copying %d bytes from %p to %p + %d\n", + obj->el_size*num, els, obj->array, obj->el_size*index); + + bcopy(els, obj->array + obj->el_size*index, obj->el_size*num); |