From 83d5a5313dfd29818c00cf9d28414a82ccf6935f Mon Sep 17 00:00:00 2001 From: John Scipione Date: Wed, 4 Mar 2015 15:40:55 -0500 Subject: [PATCH] MessageFormat: Use int64 instead of off_t They are effectively the same thing, but int64 is more generic. I used an off_t because that is what Tracker passed in, yet, this could be used in other places where an off_t doesn't make as much sense. --- headers/os/locale/MessageFormat.h | 2 +- src/kits/locale/MessageFormat.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/os/locale/MessageFormat.h b/headers/os/locale/MessageFormat.h index 9d75c1ab3e..eeaf978c00 100644 --- a/headers/os/locale/MessageFormat.h +++ b/headers/os/locale/MessageFormat.h @@ -28,7 +28,7 @@ public: status_t InitCheck(); - status_t Format(BString& buffer, const off_t arg) const; + status_t Format(BString& buffer, const int64 arg) const; private: status_t _Initialize(const icu::UnicodeString&); diff --git a/src/kits/locale/MessageFormat.cpp b/src/kits/locale/MessageFormat.cpp index b4dc58c325..4c66e5a08f 100644 --- a/src/kits/locale/MessageFormat.cpp +++ b/src/kits/locale/MessageFormat.cpp @@ -45,7 +45,7 @@ BMessageFormat::InitCheck() status_t -BMessageFormat::Format(BString& output, const off_t arg) const +BMessageFormat::Format(BString& output, const int64 arg) const { if (fInitStatus != B_OK) return fInitStatus; @@ -54,7 +54,7 @@ BMessageFormat::Format(BString& output, const off_t arg) const UErrorCode error = U_ZERO_ERROR; Formattable arguments[] = { - (off_t)arg + (int64)arg }; FieldPosition pos;