diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-12-15 09:03:52 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-12-15 10:18:32 +0200 |
commit | 3954e5d802d29009abdc8a58438cea333df632a3 (patch) | |
tree | 7e07f1a8131f03324c36d2ff12e63fc057fcaa6b /indra/newview | |
parent | 7f9438ed2b1e91aff615673ca2d97a3f300910f6 (diff) |
DRTVWR-600 macos buildfix
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llinventorygallerymenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorygallerymenu.cpp b/indra/newview/llinventorygallerymenu.cpp index f653641bb2..c8ac73b838 100644 --- a/indra/newview/llinventorygallerymenu.cpp +++ b/indra/newview/llinventorygallerymenu.cpp @@ -70,7 +70,7 @@ void modify_outfit(BOOL append, const LLUUID& cat_id, LLInventoryModel* model) if (items.size() > max_items()) { LLSD args; - args["AMOUNT"] = llformat("%d", max_items); + args["AMOUNT"] = llformat("%d", static_cast<U32>(max_items)); LLNotificationsUtil::add("TooManyWearables", args); return; } |