Merge pull request #7951 from heitbaum/libfmt

Fix building with fmt >= 10
This commit is contained in:
CvH 2023-08-05 21:09:10 +02:00 committed by GitHub
commit 505cf4d3bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ index f6aabfc615..496e1fcfa0 100644
+ contextStr = "pre-uninstall";
+ break;
+ default:
+ contextStr = StringUtils::Format("unknown(%d)", context);
+ contextStr = StringUtils::Format("unknown({})", static_cast<ADDON::LE_ADDON_CONTEXT>(context));
+ break;
+ }
+