summaryrefslogtreecommitdiff
path: root/devel/ptlib26/files/patch-src__ptlib__unix__svcproc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'devel/ptlib26/files/patch-src__ptlib__unix__svcproc.cxx')
-rw-r--r--devel/ptlib26/files/patch-src__ptlib__unix__svcproc.cxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/devel/ptlib26/files/patch-src__ptlib__unix__svcproc.cxx b/devel/ptlib26/files/patch-src__ptlib__unix__svcproc.cxx
deleted file mode 100644
index 6fe5f399d6b0..000000000000
--- a/devel/ptlib26/files/patch-src__ptlib__unix__svcproc.cxx
+++ /dev/null
@@ -1,26 +0,0 @@
---- ./src/ptlib/unix/svcproc.cxx.orig 2009-02-14 22:03:27.000000000 +0100
-+++ ./src/ptlib/unix/svcproc.cxx 2009-02-14 22:03:32.000000000 +0100
-@@ -165,7 +165,7 @@
- #elif defined(BE_THREADS)
- thread_id tid = ::find_thread(NULL);
- #else
-- unsigned tid = (unsigned) pthread_self();
-+ unsigned long tid = (unsigned long)pthread_self();
- #endif
- *out << "ThreadID=0x"
- << setfill('0') << ::hex
-@@ -719,12 +719,12 @@
- #elif defined(BE_THREADS)
- thread_id tid = ::find_thread(NULL);
- #else
-- unsigned tid = (unsigned) pthread_self();
-+ unsigned long tid = (unsigned long)pthread_self();
- #endif
- PThread * thread_ptr = activeThreads.GetAt(tid);
-
- char msg[200];
-- sprintf(msg, "\nCaught %s, thread_id=%u", sigmsg, tid);
-+ sprintf(msg, "\nCaught %s, thread_id=%lu", sigmsg, tid);
-
- if (thread_ptr != NULL) {
- PString thread_name = thread_ptr->GetThreadName();