13
0

fix some 64bit warnings

git-svn-id: svn://localhost/trunk/ardour2@206 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Karsten Wiese 2005-12-24 12:10:01 +00:00
parent 45addca9eb
commit 143cb330b6
3 changed files with 7 additions and 7 deletions

View File

@ -860,7 +860,7 @@ AudioTrack::freeze (InterThreadInfo& itt)
uint32_t n = 1;
while (n < (ULONG_MAX-1)) {
while (n < (UINT_MAX-1)) {
string candidate;
@ -875,7 +875,7 @@ AudioTrack::freeze (InterThreadInfo& itt)
}
if (n == (ULONG_MAX-1)) {
if (n == (UINT_MAX-1)) {
error << string_compose (X_("There Are too many frozen versions of playlist \"%1\""
" to create another one"), _freeze_record.playlist->name())
<< endmsg;

View File

@ -1566,7 +1566,7 @@ Session::new_audio_track (int input_channels, int output_channels)
}
n++;
} while (n < (ULONG_MAX-1));
} while (n < (UINT_MAX-1));
if (input_auto_connect & AutoConnectPhysical) {
nphysical_in = n_physical_inputs;
@ -1673,7 +1673,7 @@ Session::new_audio_route (int input_channels, int output_channels)
}
n++;
} while (n < (ULONG_MAX-1));
} while (n < (UINT_MAX-1));
try {
bus = new Route (*this, bus_name, -1, -1, -1, -1);
@ -2153,7 +2153,7 @@ Session::new_region_name (string old)
}
while (number < (ULONG_MAX-1)) {
while (number < (UINT_MAX-1)) {
AudioRegionList::const_iterator i;
string sbuf;
@ -2174,7 +2174,7 @@ Session::new_region_name (string old)
}
}
if (number != (ULONG_MAX-1)) {
if (number != (UINT_MAX-1)) {
return buf;
}

View File

@ -23,7 +23,7 @@ PBD::dirname (const char *path)
len = (size_t) (slash - path);
ret = (char *) malloc (sizeof (char) * (len + 1));
snprintf (ret, len, "%*s", len, path);
snprintf (ret, len, "%*s", (int)len, path);
return ret;
}