|
From: Luis C. <lfc...@us...> - 2001-06-08 18:16:11
|
Update of /cvsroot/yap/C
In directory usw-pr-cvs1:/tmp/cvs-serv3007
Modified Files:
attvar.c
Log Message:
* fixed a typo in PutAtt (timestmp -> timestamp)
Index: attvar.c
===================================================================
RCS file: /cvsroot/yap/C/attvar.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- attvar.c 2001/06/06 19:10:50 1.3
+++ attvar.c 2001/06/08 18:16:07 1.4
@@ -202,7 +202,7 @@
CELL *timestamp = (CELL *)(attv->Atts[pos]);
if (B->cp_h <= timestamp
#if defined(SBA) || defined(TABLING)
- && timestmp <= H
+ && timestamp <= H
#endif
) {
#if defined(SBA)
|