Changeset 15337 for trunk/FACT++


Ignore:
Timestamp:
04/14/13 17:26:54 (12 years ago)
Author:
tbretz
Message:
Fixed the bis mask for incomplete events; %ud should be %u
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/EventBuilder.c

    r15285 r15337  
    18111811                         if (gi_NumConnect[b] >0 ) {
    18121812                             str[ik++] = '.';
    1813                             report |= 1<<ib;
     1813                            report |= ((uint64_t)1)<<ib;
    18141814                         } else {
    18151815                             str[ik++] = 'x';
     
    26322632      if (runIdFound == 0)
    26332633      {
    2634           snprintf(str, MXSTR, "An Active run (number %ud) has been registered, but it could not be found in the runs list", actrun);
     2634          snprintf(str, MXSTR, "An Active run (number %u) has been registered, but it could not be found in the runs list", actrun);
    26352635          factOut(kInfo, 000, str);
    26362636      }
Note: See TracChangeset for help on using the changeset viewer.