forked from mirrors/linux
		
	|  33cec19dc0 size_t needs a %z format string modifier instead of %l
samples/vfs/test-list-all-mounts.c:152:39: warning: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Wformat]
  152 |                                         printf("mnt_uidmap[%lu]:\t%s\n", idx, idmap);
      |                                                            ~~~           ^~~
      |                                                            %zu
samples/vfs/test-list-all-mounts.c:161:39: warning: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Wformat]
  161 |                                         printf("mnt_gidmap[%lu]:\t%s\n", idx, idmap);
      |                                                            ~~~           ^~~
      |                                                            %zu
Fixes:  | ||
|---|---|---|
| .. | ||
| .gitignore | ||
| Makefile | ||
| mountinfo.c | ||
| samples-vfs.h | ||
| test-fsmount.c | ||
| test-list-all-mounts.c | ||
| test-statx.c | ||