mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-11-03 06:24:27 -05:00
When building the kernel with -Wmaybe-uninitialized, GCC reports this
warning:
block/partitions/fit.c: In function 'parse_fit_partitions':
block/partitions/fit.c:164:3: warning: 'images' may be used uninitialized in this function [-Wmaybe-uninitialized]
164 | printk(KERN_ERR "FIT: Cannot find %s node: %d\n", FIT_CONFS_PATH, images);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
It appears to be a copy paste error. It's the "config" variable that is
supposed to be printed.
Fixes:
|
||
|---|---|---|
| .. | ||
| base-files | ||
| dts | ||
| files | ||
| files-6.6 | ||
| filogic | ||
| image | ||
| mt7622 | ||
| mt7623 | ||
| mt7629 | ||
| patches-6.6 | ||
| Makefile | ||
| modules.mk | ||