Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 112131
Collapse All | Expand All

(-)eboard-0.9.5/board.cc.orig (-2 / +2 lines)
Lines 1059-1066 Link Here
1059
  cerr.setf(ios::hex,ios::basefield);
1059
  cerr.setf(ios::hex,ios::basefield);
1060
  cerr.setf(ios::showbase);
1060
  cerr.setf(ios::showbase);
1061
1061
1062
  cerr << "[board " << ((unsigned int)this) << "] ";
1062
  cerr << "[board " << ((unsigned long)this) << "] ";
1063
  cerr << "game=[" << ((unsigned int)mygame) << "] ";
1063
  cerr << "game=[" << ((unsigned long)mygame) << "] ";
1064
1064
1065
  cerr.setf(ios::dec,ios::basefield);
1065
  cerr.setf(ios::dec,ios::basefield);
1066
  cerr << "paneid=" << getPageId() << endl;
1066
  cerr << "paneid=" << getPageId() << endl;
(-)eboard-0.9.5/chess.cc.orig (-2 / +2 lines)
Lines 641-647 Link Here
641
  cerr.setf(ios::hex,ios::basefield);
641
  cerr.setf(ios::hex,ios::basefield);
642
  cerr.setf(ios::showbase);
642
  cerr.setf(ios::showbase);
643
643
644
  cerr << "[game " << ((unsigned int)this) << "] ";
644
  cerr << "[game " << ((unsigned long)this) << "] ";
645
645
646
  cerr.setf(ios::dec,ios::basefield);
646
  cerr.setf(ios::dec,ios::basefield);
647
647
Lines 655-661 Link Here
655
  cerr.setf(ios::hex,ios::basefield);
655
  cerr.setf(ios::hex,ios::basefield);
656
  cerr.setf(ios::showbase);
656
  cerr.setf(ios::showbase);
657
657
658
  cerr << "board=[" << ((unsigned int)myboard) << "]" << endl;
658
  cerr << "board=[" << ((unsigned long)myboard) << "]" << endl;
659
}
659
}
660
660
661
char * ChessGame::getPlayerString(int index) {
661
char * ChessGame::getPlayerString(int index) {
(-)eboard-0.9.5/notebook.cc.orig (-1 / +1 lines)
Lines 127-133 Link Here
127
void Page::dump() {
127
void Page::dump() {
128
  cerr.setf(ios::hex,ios::basefield);
128
  cerr.setf(ios::hex,ios::basefield);
129
  cerr.setf(ios::showbase);
129
  cerr.setf(ios::showbase);
130
  cerr << "[page " << ((unsigned int)this) << "] ";
130
  cerr << "[page " << ((unsigned long)this) << "] ";
131
  cerr.setf(ios::dec,ios::basefield);
131
  cerr.setf(ios::dec,ios::basefield);
132
  cerr << "pageid=" << number << " ";
132
  cerr << "pageid=" << number << " ";
133
  cerr << "title=" << title << " ";
133
  cerr << "title=" << title << " ";

Return to bug 112131