aboutsummaryrefslogtreecommitdiffstats
path: root/mkrounding.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-12-16 21:11:58 +0000
committerWayne Davison <wayned@samba.org>2006-12-16 21:11:58 +0000
commit5a3e9ff6081cb83873881df9a7bcfc19f9af5e58 (patch)
treedc0c94b0166580670db2cae2b08410838c9d6ae8 /mkrounding.c
parentaac5cab80b9d4fc0adff2b72aeba2406176930ae (diff)
downloadandroid_external_rsync-5a3e9ff6081cb83873881df9a7bcfc19f9af5e58.tar.gz
android_external_rsync-5a3e9ff6081cb83873881df9a7bcfc19f9af5e58.tar.bz2
android_external_rsync-5a3e9ff6081cb83873881df9a7bcfc19f9af5e58.zip
Output some info about the size of our structures.
Diffstat (limited to 'mkrounding.c')
-rw-r--r--mkrounding.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mkrounding.c b/mkrounding.c
index 11b8302c..f81d7877 100644
--- a/mkrounding.c
+++ b/mkrounding.c
@@ -37,9 +37,11 @@ struct test4 {
cnt = 3;
}
if (cnt)
- fprintf(stderr, "Rounding file_extras values in multiples of %d.\n", cnt + 1);
+ fprintf(stderr, "Rounding file_extras values in multiples of %d", cnt + 1);
else
- fprintf(stderr, "No rounding needed for file_extras values.\n");
+ fprintf(stderr, "No rounding needed for file_extras values");
+ fprintf(stderr, " (EXTRA_LEN=%d, FILE_STRUCT_LEN=%d)\n",
+ (int)EXTRA_LEN, (int)FILE_STRUCT_LEN);
printf("#define EXTRA_ROUNDING %d\n", cnt);
return 0;
}