Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes the following warnings: ``` library/objective-c/EnvoyConfiguration.m:26:61: warning: values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned int' instead [-Wformat] @"connect_timeout" : [NSString stringWithFormat:@"%is", self.connectTimeoutSeconds], ~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~ %u (unsigned int) library/objective-c/EnvoyConfiguration.m:27:62: warning: values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned int' instead [-Wformat] @"dns_refresh_rate" : [NSString stringWithFormat:@"%is", self.dnsRefreshSeconds], ~~ ^~~~~~~~~~~~~~~~~~~~~~ %u (unsigned int) library/objective-c/EnvoyConfiguration.m:28:66: warning: values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned int' instead [-Wformat] @"stats_flush_interval" : [NSString stringWithFormat:@"%is", self.statsFlushSeconds] ~~ ^~~~~~~~~~~~~~~~~~~~~~ %u (unsigned int) ``` Signed-off-by: Michael Rebello <[email protected]> Signed-off-by: JP Simard <[email protected]>
- Loading branch information