diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-12-14 21:23:23 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-12-14 21:23:23 +0000 |
commit | 1030335d037a104e7c9b61a8ad831800c9a613ac (patch) | |
tree | 56ab5f857ab2215da8c28157028ea74a2e90f6f6 /comms/hcidump/files/patch-parser-sdp.c | |
parent | It turns out that Andrey Slusar only wants to maintain the xemacs-mule (diff) |
- Update to 1.5.1
Notes
Notes:
svn path=/head/; revision=124028
Diffstat (limited to '')
-rw-r--r-- | comms/hcidump/files/patch-parser-sdp.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/comms/hcidump/files/patch-parser-sdp.c b/comms/hcidump/files/patch-parser-sdp.c deleted file mode 100644 index d7988e250f51..000000000000 --- a/comms/hcidump/files/patch-parser-sdp.c +++ /dev/null @@ -1,28 +0,0 @@ ---- parser/sdp.c.orig Sat Sep 13 01:38:11 2003 -+++ parser/sdp.c Tue Dec 14 21:59:15 2004 -@@ -31,6 +31,7 @@ - - #include <sys/types.h> - #include <netinet/in.h> -+#include <inttypes.h> - #include <stdio.h> - - #include "parser.h" -@@ -203,7 +204,7 @@ - break; - case 16:/* 128-bit */ - get_u128(frm, &val, &val2); -- printf(" 0x%llx 0x%llx", val2, val); -+ printf(" 0x%" PRIx64 "0x%" PRIx64, val2, val); - return; - default: /* syntax error */ - printf(" err"); -@@ -212,7 +213,7 @@ - return; - } - -- printf(" 0x%llx", val); -+ printf(" 0x%" PRIx64, val); - } - - static void print_uuid(int n, struct frame *frm) |