freebsd-ports/graphics/c-a-i-r/files/patch-CAIR.cpp
Wen Heping acddf8cee4 - Update to 2.19
PR:		ports/144371
Submitted by:	Kuan-Chung Chiu <buganini@gmail.com> (maintainer)
2010-03-16 01:07:34 +00:00

38 lines
998 B
C++

--- CAIR.cpp.orig 2010-03-16 08:51:06.000000000 +0800
+++ CAIR.cpp 2010-03-16 08:55:11.000000000 +0800
@@ -276,7 +276,7 @@
//Our thread function for the Grayscale
void * Gray_Quadrant( void * id )
{
- int num = *((int *)id);
+ long int num = *((long int *)id);
while( true )
{
@@ -437,7 +437,7 @@
//The thread function, splitting the image into strips
void * Edge_Quadrant( void * id )
{
- int num = *((int *)id);
+ long int num = *((long int *)id);
while( true )
{
@@ -744,7 +744,7 @@
//This works like Remove_Quadrant, strips across the image.
void * Add_Quadrant( void * id )
{
- int num = *((int *)id);
+ long int num = *((long int *)id);
Thread_Params add_area;
while( true )
@@ -907,7 +907,7 @@
//the areas are not quadrants, rather, more like strips, but I keep the name convention
void * Remove_Quadrant( void * id )
{
- int num = *((int *)id);
+ long int num = *((long int *)id);
Thread_Params remove_area;
while( true )