remove signed/unsigned warnings

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9926 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2004-11-11 12:34:29 +00:00
parent adddd452bf
commit 8bd859069f
2 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ THeaderView::THeaderView (
name << " (" << mime << ")";
}
msg = new BMessage(kMsgEncoding);
int32 convert_id;
uint32 convert_id;
if ((mime == 0) || (strcasecmp(mime, "UTF-8") != 0)) {
convert_id = charset.GetConversionID();
} else {

View File

@ -894,7 +894,7 @@ TPrefsWindow::BuildEncodingMenu(uint32 encoding)
name << " (" << mime << ")";
}
msg = new BMessage(P_ENC);
int convert_id;
uint32 convert_id;
if ((mime == 0) || (strcasecmp(mime, "UTF-8") != 0)) {
convert_id = charset.GetConversionID();
} else {