Changeset 1142

Show
Ignore:
Timestamp:
05/09/08 00:57:07 (16 years ago)
Author:
holin
Message:

use correct types (fixes 64-bit breakage)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/src/dice/dice_avdevice.cpp

    r1139 r1142  
    13301330 
    13311331    // find the end of the string 
    1332     unsigned int end=in.find(string("\\\\")); 
     1332    string::size_type end=in.find(string("\\\\")); 
    13331333    // cut the end 
    13341334    in=in.substr(0,end); 
    13351335 
    1336     unsigned int cut; 
     1336    string::size_type cut; 
    13371337    while( (cut = in.find(string("\\"))) != in.npos ) { 
    13381338        if(cut > 0) {