diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-26 16:51:15 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-26 16:51:15 +0000 |
commit | 9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 (patch) | |
tree | 9b071a8105704e992946dcd6b801e9fcb7635142 /audio/liblo/files/patch-src-messages.c | |
parent | MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, (diff) |
Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.
With hat: portmgr
Sponsored by: Absolight
Diffstat (limited to 'audio/liblo/files/patch-src-messages.c')
-rw-r--r-- | audio/liblo/files/patch-src-messages.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/audio/liblo/files/patch-src-messages.c b/audio/liblo/files/patch-src-messages.c deleted file mode 100644 index 0eb8820b8e97..000000000000 --- a/audio/liblo/files/patch-src-messages.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/message.c.orig 2014-01-20 12:49:42.000000000 +0100 -+++ src/message.c 2014-12-03 23:02:28.000000000 +0100 -@@ -996,8 +996,8 @@ void lo_message_pp(lo_message m) - putchar('\n'); - if (d != end) { - fprintf(stderr, -- "liblo warning: type and data do not match (off by %d) in message %p\n", -- abs((char *) d - (char *) end), m); -+ "liblo warning: type and data do not match (off by %td) in message %p\n", -+ d >= end ? (char *) d - (char *) end : (char *) end - (char *) d, m); - } - } - |