Changeset 95eeda in git
- Timestamp:
- Feb 21, 2014, 6:08:46 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 0a703ea5ab73bc9ef035d069331cde8c4de40906
- Parents:
- 654726fdd2ca289b1ef3cbf4e931a1502bf145ef
- Location:
- libpolys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/modulop.cc
r654726 r95eeda 343 343 } 344 344 while (((*s) >= '0') && ((*s) <= '9')); 345 if (ii >= r->ch) ii = ii % r->ch;345 if (ii >= (unsigned long)r->ch) ii = ii % r->ch; 346 346 *i=(int)ii; 347 347 } -
libpolys/reporter/reporter.cc
r654726 r95eeda 354 354 #ifdef HAVE_VSNPRINTF 355 355 l = vsnprintf(s, ls+511, fmt, ap); 356 if ((l==-1)||(s[l]!='\0')||(l!= strlen(s)))356 if ((l==-1)||(s[l]!='\0')||(l!=(int)strlen(s))) 357 357 { 358 358 printf("Print problem: l=%d, fmt=>>%s<<\n",l,fmt);
Note: See TracChangeset
for help on using the changeset viewer.