1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ac,v 1.1.1.1 2001/04/28 02:36:35 dmcmahill Exp $
--- plane.cc.orig Mon Dec 7 03:28:51 1998
+++ plane.cc Fri Apr 27 16:48:43 2001
@@ -335,9 +335,9 @@
for (j=1;j<=l[i];j++) {
if (l[i]!=2)
- if (LX[i][j]!=LX[i][j+1]) fprintf(fo,"below %ld %le\n",i,LX[i][j]);
+ if (LX[i][j]!=LX[i][j+1]) fprintf(fo,"below %d %e\n",i,LX[i][j]);
}
for (j=1;j<=u[i];j++) {
if (u[i]!=2)
- if (UX[i][j]!=UX[i][j+1]) fprintf(fo,"above %ld %le\n",i,UX[i][j]);
+ if (UX[i][j]!=UX[i][j+1]) fprintf(fo,"above %d %e\n",i,UX[i][j]);
}
}
|