Hi,
 
  It seems that quarry assumes char is signed, which isn't the case on various
  architectures (like ppc).. Fixed in attached trivial patch.

  Sjoerd
PS: please CC me in replies, i'm not on the list.
-- 
If you find a solution and become attached to it, the solution may become
your next problem.
--- quarry-0.1.14/src/board/board.h     2004-10-18 21:32:50.000000000 +0200
+++ quarry-0.1.14-patched/src/board/board.h     2005-03-19 12:56:15.000000000 
+0100
@@ -61,8 +61,8 @@
 typedef struct _BoardPoint     BoardPoint;
 
 struct _BoardPoint {
-  char         x;
-  char         y;
+  signed char          x;
+  signed char          y;
 };
 
 

Reply via email to