fixed warnings

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23495 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2008-01-13 19:43:00 +00:00
parent bece4ef7ab
commit 629e25ef6d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -600,7 +600,7 @@ VideoWindow::MessageReceived(BMessage* message)
if (control != NULL) {
int32 client;
message->FindInt32("client", &(fFtpInfo.uploadClient));
FTPINFO("upl client = %d\n", fFtpInfo.uploadClient);
FTPINFO("upl client = %ld\n", fFtpInfo.uploadClient);
}
break;
+1 -1
View File
@@ -688,7 +688,7 @@ VideoConsumer::FtpSave(char* filename)
ftp = new SftpClient;
break;
default:
fprintf(stderr, "invalid upload client %d\n", fUploadClient);
fprintf(stderr, "invalid upload client %ld\n", fUploadClient);
return EINVAL;
}