From: Morten Kjeldgaard <mok@bioxray.au.dk>
Subject: modification to source code


--- a/src/AO.cpp
+++ b/src/AO.cpp
@@ -109,7 +109,7 @@ AO::AO( Point3f _dir, Mol &m) {
 
   buf.resize(target*target,infty);
   
-  for (int i=0; i<m.atom.size()-1; i++) {
+  for (int i=0; i < (int)m.atom.size()-1; i++) {
     QAtom &a=m.atom[i];
     CheckAtom(a);
     RenderSphere( a.trp[0], a.trp[1], a.trp[2], a.trr );
diff --git a/src/AO.h b/src/AO.h
index 2df500b..d5512a4 100644
