JPEGTranslator: fixes a 64 bit warning

This commit is contained in:
Jérôme Duval 2013-05-12 16:34:12 +02:00
parent 78a1163c7b
commit bb4537c841
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ SSlider::SSlider(const char* name, const char* label,
const char*
SSlider::UpdateText() const
{
snprintf(fStatusLabel, sizeof(fStatusLabel), "%ld", Value());
snprintf(fStatusLabel, sizeof(fStatusLabel), "%" B_PRId32, Value());
return fStatusLabel;
}