freebsd-ports/audio/xmms-timidity/files/patch-xmms-timidity.cpp
Pav Lucistnik 315555d357 - Fix build on 64-bit platforms
Submitted by:	Timothy Beyer <beyert@cs.ucr.edu> (maintainer)
2009-07-20 11:29:03 +00:00

11 lines
330 B
C++

--- xmms-timidity.cpp.orig 2005-07-21 02:44:56.000000000 -0700
+++ xmms-timidity.cpp 2009-07-19 22:30:38.000000000 -0700
@@ -347,7 +347,7 @@
void *infoThread(void *pData)
{
- int pipeTimidity = (int)pData;
+ long pipeTimidity = (long)pData;
char cLine[256];
signed int iBytes = 1;
while ((iBytes > 0) && (::bPlaying)) {