You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Ben Laurie <be...@hyperreal.com> on 1997/06/29 19:34:36 UTC

cvs commit: apache/src mod_imap.c

ben         97/06/29 10:34:35

  Modified:    src       mod_imap.c
  Log:
  Fix VC++ warnings.
  
  Revision  Changes    Path
  1.22      +1 -1      apache/src/mod_imap.c
  
  Index: mod_imap.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_imap.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -C3 -r1.21 -r1.22
  *** mod_imap.c	1997/04/12 04:24:58	1.21
  --- mod_imap.c	1997/06/29 17:34:35	1.22
  ***************
  *** 181,187 ****
    
    int pointincircle(double point[2], double coords[MAXVERTS][2])
    {
  !     int radius1, radius2;
    
        radius1 = ((coords[0][Y] - coords[1][Y]) * (coords[0][Y] - coords[1][Y]))
    	+ ((coords[0][X] - coords[1][X]) * (coords[0][X] - coords[1][X]));
  --- 181,187 ----
    
    int pointincircle(double point[2], double coords[MAXVERTS][2])
    {
  !     double radius1, radius2;
    
        radius1 = ((coords[0][Y] - coords[1][Y]) * (coords[0][Y] - coords[1][Y]))
    	+ ((coords[0][X] - coords[1][X]) * (coords[0][X] - coords[1][X]));