]> git.pld-linux.org Git - packages/amarok-script-transkode.git/blame - amarok-script-transkode-x86_64.patch
- fixes casting of pointers to int on x86_64 machines
[packages/amarok-script-transkode.git] / amarok-script-transkode-x86_64.patch
CommitLineData
9b7a9e03 1diff -urN transkode-0.5/src/worker/transkodefilejob.cpp transcode-0.5.new/src/worker/transkodefilejob.cpp
2--- transkode-0.5/src/worker/transkodefilejob.cpp 2006-05-02 00:10:55.000000000 +0200
3+++ transcode-0.5.new/src/worker/transkodefilejob.cpp 2006-11-17 13:59:06.432983250 +0100
4@@ -39,7 +39,7 @@
5 QMutex TransKodeFileJob::s_fileTypeResolverMutex( true );
6
7 TransKodeFileJob::TransKodeFileJob( const TransKodeConfig& cfg, const QString& srcPath, const QString& profile ):
8- m_jobID( (int)this ),
9+ m_jobID( (long)this ),
10 m_config( cfg ),
11 m_jobMutex( true ), // recursive mutex
12 m_worker( 0 ),
13@@ -67,7 +67,7 @@
14 }
15
16 TransKodeFileJob::TransKodeFileJob( const TransKodeConfig& cfg, const QString& srcPath ):
17- m_jobID( (int)this ),
18+ m_jobID( (long)this ),
19 m_config( cfg ),
20 m_jobMutex( true ), // recursive mutex
21 m_worker( 0 ),
22diff -urN transkode-0.5/src/worker/transkodefileworker.cpp transcode-0.5.new/src/worker/transkodefileworker.cpp
23--- transkode-0.5/src/worker/transkodefileworker.cpp 2006-05-01 05:35:44.000000000 +0200
24+++ transcode-0.5.new/src/worker/transkodefileworker.cpp 2006-11-17 13:58:49.199906250 +0100
25@@ -31,7 +31,7 @@
26
27 m_logger( logger ),
28 m_config( cfg ),
29- m_workerID( (int)this ),
30+ m_workerID( (long)this ),
31 m_autoRefresh( autoRefresh ),
32
33 m_threadPaused( 0 ),
This page took 0.073262 seconds and 4 git commands to generate.