From: arif Date: Wed, 23 Apr 2008 19:08:53 +0000 (+0000) Subject: warning clean up X-Git-Tag: LAST_LIBGRAPH~32^2~4235 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9378c295a5fe374de39007ead4ad81331ea56f07;p=graphviz warning clean up --- diff --git a/cmd/smyrna/selection.c b/cmd/smyrna/selection.c index 82b42c594..eb659abea 100755 --- a/cmd/smyrna/selection.c +++ b/cmd/smyrna/selection.c @@ -1021,7 +1021,7 @@ int point_within_sphere_with_coords(float x0, float y0, float z0, float r, float x, float y,float z) { float rr=(x-x0)*(x-x0)+(y-y0)*(y-y0)+(z-z0)*(z-z0); - rr=pow(rr,0.5); + rr=(float)pow(rr,0.5); if (rr <= r) return 1; return 0;