Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6009


Ignore:
Timestamp:
Oct 30, 2009, 11:25:26 PM (14 years ago)
Author:
adrfried
Message:

fixed usage of size_t in printf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core5/src/libraries/util/SubString.cc

    r5738 r6009  
    557557    void SubString::debug() const
    558558    {
    559         printf("Substring-information::count=%d ::", this->strings.size());
     559        printf("Substring-information::count=%zd ::", this->strings.size());
    560560        for (unsigned int i = 0; i < this->strings.size(); i++)
    561561            printf("s%d='%s'::", i, this->strings[i].c_str());
Note: See TracChangeset for help on using the changeset viewer.