You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updating format strings per feedback in Darwin (#33584)
* Updating format strings per feedback
* Restyled by clang-format
* Fixing static casts
* Fixing example
* Restyled by clang-format
* Found more static cast misses
* Restyled by clang-format
* Fixing format
* Restyled by clang-format
* Fixing format
* Restyled by clang-format
---------
Co-authored-by: Restyled.io <commits@restyled.io>
Copy file name to clipboardexpand all lines: src/darwin/Framework/CHIP/MTRDevice.mm
+5-5
Original file line number
Diff line number
Diff line change
@@ -2158,7 +2158,7 @@ - (void)_setupSubscription
2158
2158
return;
2159
2159
}
2160
2160
2161
-
MTR_LOG("%@ Subscribe with data version list size %lu, reduced by %lu", self, (unsigned long) dataVersions.count, (unsigned long) dataVersionFilterListSizeReduction);
2161
+
MTR_LOG("%@ Subscribe with data version list size %lu, reduced by %lu", self, static_cast<unsignedlong>(dataVersions.count), static_cast<unsignedlong>(dataVersionFilterListSizeReduction));
2162
2162
2163
2163
// Callback and ClusterStateCache and ReadClient will be deleted
0 commit comments