From b5f9f6152b92c237b4f7f045c16ec9f3c121dd59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Fri, 17 Jul 2009 17:51:01 +0000 Subject: [PATCH] mkamsboot: remove runtime copyright notice add a cast to remove a warning in printf() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21925 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/mkamsboot/mkamsboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rbutil/mkamsboot/mkamsboot.c b/rbutil/mkamsboot/mkamsboot.c index 62c33186d7..fb0e3cb034 100644 --- a/rbutil/mkamsboot/mkamsboot.c +++ b/rbutil/mkamsboot/mkamsboot.c @@ -592,7 +592,7 @@ int main(int argc, char* argv[]) /* VERSION comes frome the Makefile */ fprintf(stderr, -"mkamsboot Version " VERSION " - (C) Dave Chapman and Rafaël Carré 2008\n" +"mkamsboot Version " VERSION "\n" "This is free software; see the source for copying conditions. There is NO\n" "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" "\n"); @@ -645,7 +645,7 @@ int main(int argc, char* argv[]) fprintf(stderr, "[INFO] Dual-boot function size: %d bytes\n", bootloader_sizes[sum.model]); fprintf(stderr, "[INFO] UCL unpack function size: %u bytes\n", - sizeof(nrv2e_d8)); + (unsigned int)sizeof(nrv2e_d8)); totalsize = total_size(sum.model, of_packedsize, rb_packedsize);