Ignore:
Timestamp:
10/23/11 12:39:26 (13 years ago)
Author:
tbretz
Message:
Fixed the new DEBUG stuff.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/biasctrl.cc

    r12230 r12231  
    2626using namespace BIAS;
    2727
     28#define DEBUG
     29
    2830// ------------------------------------------------------------------------
    2931
     
    299301    ofstream fout("received.txt", ios::app);
    300302    fout << Time() << ": ";
    301     for (int i=0; i<bytes_received; i++)
     303    for (unsigned int i=0; i<bytes_received; i++)
    302304        fout << hex << setfill('0') << setw(2) << (uint32_t)buf[i];
    303305    fout << endl;
Note: See TracChangeset for help on using the changeset viewer.