text-utils/hexdump.h:84:5: warning: shadowed declaration is here [-Wshadow] ./include/xalloc.h:23:28: warning: declaration of 'size' shadows a global declaration [-Wshadow] ./include/xalloc.h:33:40: warning: declaration of 'size' shadows a global declaration [-Wshadow] ./include/xalloc.h:43:49: warning: declaration of 'size' shadows a global declaration [-Wshadow] Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- text-utils/hexdump.c | 2 +- text-utils/hexdump.h | 2 +- text-utils/parse.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/text-utils/hexdump.c b/text-utils/hexdump.c index 90c2d77..a4a61cf 100644 --- a/text-utils/hexdump.c +++ b/text-utils/hexdump.c @@ -68,7 +68,7 @@ int main(int argc, char **argv) /* figure out the data block size */ for (blocksize = 0, tfs = fshead; tfs; tfs = tfs->nextfs) { - tfs->bcnt = size(tfs); + tfs->bcnt = block_size(tfs); if (blocksize < tfs->bcnt) blocksize = tfs->bcnt; } diff --git a/text-utils/hexdump.h b/text-utils/hexdump.h index 2222585..b9e67a1 100644 --- a/text-utils/hexdump.h +++ b/text-utils/hexdump.h @@ -81,7 +81,7 @@ extern off_t skip; /* bytes to skip */ enum _vflag { ALL, DUP, FIRST, WAIT }; /* -v values */ extern enum _vflag vflag; -int size(FS *); +int block_size(FS *); void add(const char *); void rewrite(FS *); void addfile(char *); diff --git a/text-utils/parse.c b/text-utils/parse.c index 481db6d..5f1e2bd 100644 --- a/text-utils/parse.c +++ b/text-utils/parse.c @@ -150,7 +150,7 @@ void add(const char *fmt) static const char *spec = ".#-+ 0123456789"; -int size(FS *fs) +int block_size(FS *fs) { FU *fu; int bcnt, cursize; -- 1.7.11.3 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html