Changeset e9fdf6 in git
- Timestamp:
- Oct 1, 2008, 5:18:44 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 49f94f3754d486ab94e553bfb86651899f334c83
- Parents:
- c27111a4353e748a4961244adcae1908395a6f8b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iplib.cc
rc27111a re9fdf6 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iplib.cc,v 1.12 6 2008-08-13 15:16:23 SingularExp $ */4 /* $Id: iplib.cc,v 1.127 2008-10-01 15:18:44 seelisch Exp $ */ 5 5 /* 6 6 * ABSTRACT: interpreter: LIB and help … … 386 386 Print("lev %d:",i); 387 387 if (iiLocalRing[i]==NULL) PrintS("NULL"); 388 else Print("% x",iiLocalRing[i]);388 else Print("%lx",(long)iiLocalRing[i]); 389 389 PrintLn(); 390 390 } … … 404 404 #endif 405 405 if (currRing==NULL) PrintS("curr:NULL\n"); 406 else Print ("curr:% x\n",currRing);406 else Print ("curr:%lx\n",(long)currRing); 407 407 } 408 408 #endif /* RDEBUG */
Note: See TracChangeset
for help on using the changeset viewer.