Commit 7abfb87
executorch/examples/devtools/example_runner/example_runner.cpp: fix format mismatches printing error_code_t values
Summary:
This avoids the following errors:
executorch/examples/devtools/example_runner/example_runner.cpp:224:7: error: format specifies type 'unsigned int' but the argument has type 'Error' [-Werror,-Wformat]
executorch/examples/devtools/example_runner/example_runner.cpp:245:7: error: format specifies type 'unsigned int' but the argument has type 'Error' [-Werror,-Wformat]
executorch/examples/devtools/example_runner/example_runner.cpp:255:7: error: format specifies type 'unsigned int' but the argument has type 'Error' [-Werror,-Wformat]
executorch/examples/devtools/example_runner/example_runner.cpp:297:9: error: format specifies type 'unsigned int' but the argument has type 'Error' [-Werror,-Wformat]
Reviewed By: tarun292
Differential Revision: D645408171 parent 6b858f2 commit 7abfb87
1 file changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
221 | 221 | | |
222 | 222 | | |
223 | 223 | | |
224 | | - | |
| 224 | + | |
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
| |||
242 | 242 | | |
243 | 243 | | |
244 | 244 | | |
245 | | - | |
| 245 | + | |
246 | 246 | | |
247 | 247 | | |
248 | 248 | | |
| |||
252 | 252 | | |
253 | 253 | | |
254 | 254 | | |
255 | | - | |
| 255 | + | |
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
| |||
294 | 294 | | |
295 | 295 | | |
296 | 296 | | |
297 | | - | |
| 297 | + | |
298 | 298 | | |
299 | 299 | | |
300 | 300 | | |
| |||
0 commit comments