JPEGTranslator: fixes a 64 bit warning
This commit is contained in:
parent
78a1163c7b
commit
bb4537c841
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user