[cig-commits] commit: Fix compile errors on cygwin

Mercurial hg at geodynamics.org
Fri Nov 25 16:04:19 PST 2011


changeset:   445:53a743f4c840
tag:         tip
user:        Walter Landry <wlandry at caltech.edu>
date:        Fri Nov 25 16:04:06 2011 -0800
files:       Utils/src/PCDVC.cxx
description:
Fix compile errors on cygwin


diff -r ba5c37488c51 -r 53a743f4c840 Utils/src/PCDVC.cxx
--- a/Utils/src/PCDVC.cxx	Sat Nov 19 10:03:17 2011 -0800
+++ b/Utils/src/PCDVC.cxx	Fri Nov 25 16:04:06 2011 -0800
@@ -619,9 +619,9 @@ int compare_indexOnCPU(const void * _par
         return -1;
 
 }
-int compare_ints(const void * _A, const void * _B){
+int compare_ints(const void * _A, const void * BB){
     int *A = (int *) _A;
-    int *B = (int *) _B;
+    int *B = (int *) BB;
     if(*A > *B) return 1; else return -1;
 }
 #if 0



More information about the CIG-COMMITS mailing list