From 9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Tue, 26 Jul 2016 16:51:15 +0000 Subject: Cleanup patches, a* categories. Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight --- audio/liblo/files/patch-src_message.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 audio/liblo/files/patch-src_message.c (limited to 'audio/liblo/files/patch-src_message.c') diff --git a/audio/liblo/files/patch-src_message.c b/audio/liblo/files/patch-src_message.c new file mode 100644 index 000000000000..1d72a7025726 --- /dev/null +++ b/audio/liblo/files/patch-src_message.c @@ -0,0 +1,13 @@ +--- src/message.c.orig 2014-01-20 11:49:42 UTC ++++ src/message.c +@@ -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); + } + } + -- cgit v1.2.3