|
From: Luis C. <lfc...@us...> - 2001-06-08 18:21:38
|
Update of /cvsroot/yap/C
In directory usw-pr-cvs1:/tmp/cvs-serv3837
Modified Files:
attvar.c
Log Message:
* the previous typo correction seemed to be reversed, so...
Index: attvar.c
===================================================================
RCS file: /cvsroot/yap/C/attvar.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- attvar.c 2001/06/08 18:16:07 1.4
+++ attvar.c 2001/06/08 18:21:35 1.5
@@ -199,10 +199,10 @@
static Int
PutAtt(attvar_record *attv, Int i, Term tatt) {
Int pos = i*2;
- CELL *timestamp = (CELL *)(attv->Atts[pos]);
- if (B->cp_h <= timestamp
+ CELL *timestmp = (CELL *)(attv->Atts[pos]);
+ if (B->cp_h <= timestmp
#if defined(SBA) || defined(TABLING)
- && timestamp <= H
+ && timestmp <= H
#endif
) {
#if defined(SBA)
|