JPEGTranslator: fixes a 64 bit warning
This commit is contained in:
@@ -402,7 +402,7 @@ SSlider::SSlider(const char* name, const char* label,
|
|||||||
const char*
|
const char*
|
||||||
SSlider::UpdateText() const
|
SSlider::UpdateText() const
|
||||||
{
|
{
|
||||||
snprintf(fStatusLabel, sizeof(fStatusLabel), "%ld", Value());
|
snprintf(fStatusLabel, sizeof(fStatusLabel), "%" B_PRId32, Value());
|
||||||
return fStatusLabel;
|
return fStatusLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user