summaryrefslogtreecommitdiff
path: root/java/jlint/files/patch-jlint.cc
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2011-12-29 15:21:04 +0000
committerMartin Wilke <miwi@FreeBSD.org>2011-12-29 15:21:04 +0000
commit2006c82a68782a7cb62237f247b93513b4aa6073 (patch)
treeec39ce5f4ba7beec80acc8de2a15bc4d7f4ffeba /java/jlint/files/patch-jlint.cc
parent- Respect CC/_MAKE_JOBS (diff)
- Update to 3.1.2
PR: 163658 Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
Diffstat (limited to '')
-rw-r--r--java/jlint/files/patch-jlint.cc29
1 files changed, 0 insertions, 29 deletions
diff --git a/java/jlint/files/patch-jlint.cc b/java/jlint/files/patch-jlint.cc
deleted file mode 100644
index 1c8d7e6a291c..000000000000
--- a/java/jlint/files/patch-jlint.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- jlint.cc.orig 2007-07-06 08:26:42.000000000 +0000
-+++ jlint.cc 2007-07-06 08:29:08.000000000 +0000
-@@ -151,7 +151,7 @@
- if (compound_message != NULL
- && ((loop_id != 0
- && ((code != msg_loop && code != msg_sync_loop)
-- || (int)parameter[2] != loop_id))
-+ || (long)parameter[2] != loop_id))
- || (loop_id == 0 && code != msg_wait_path)))
- {
- if (!message_node::find(compound_message)) {
-@@ -226,7 +226,7 @@
- name.as_asciz());
- break;
- case 'd': // integer
-- dst += sprintf(dst, "%d", (int)parameter[index]);
-+ dst += sprintf(dst, "%d", (long)parameter[index]);
- break;
- default:
- assert(false/*bad message parameter format*/);
-@@ -262,7 +262,7 @@
- compound_message = strdup(his_buf);
- first = last = new message_node(msg_buf);
- if (code != msg_wait) {
-- loop_id = (int)parameter[2];
-+ loop_id = (long)parameter[2];
- }
- } else if (!message_node::find(his_buf)) {
- fprintf(stdout, "%s\n", msg_buf);