diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-05-30 21:44:20 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-05-30 21:44:20 +0000 |
commit | 9f64c85ab33a0a99d82ae3237b1e9f65858a1535 (patch) | |
tree | b0c384df67bcc3ed52ade2dc68e4a6fedaa51334 /net-mgmt/kismet/files/patch-kismet-gpsmap.cc | |
parent | - Update to 0.5 (diff) |
- Update to 200805.r1
PR: 124142
Submitted by: Peter Thoenen <peter.thoenen@yahoo.com> (maintainer)
Diffstat (limited to 'net-mgmt/kismet/files/patch-kismet-gpsmap.cc')
-rw-r--r-- | net-mgmt/kismet/files/patch-kismet-gpsmap.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/net-mgmt/kismet/files/patch-kismet-gpsmap.cc b/net-mgmt/kismet/files/patch-kismet-gpsmap.cc deleted file mode 100644 index f3e7270fe615..000000000000 --- a/net-mgmt/kismet/files/patch-kismet-gpsmap.cc +++ /dev/null @@ -1,16 +0,0 @@ ---- gpsmap.cc.orig Mon Oct 15 15:13:32 2007 -+++ gpsmap.cc Mon Oct 15 15:15:19 2007 -@@ -2242,11 +2242,11 @@ - pthread_attr_destroy(&attr); - - // Now wait for the threads to complete and come back -- int thread_status; -+ intptr_t thread_status; - for (int t = 0; t < numthreads; t++) { - void *tmp; - pthread_join(mapthread[t], &tmp); -- thread_status = reinterpret_cast<int>(tmp); -+ thread_status = reinterpret_cast<intptr_t>(tmp); - } - #else - // Run one instance of our "thread". thread number 0, it should just crunch it all |