From 4db957ab7f4c33c29e012762b0893582ac988aa4 Mon Sep 17 00:00:00 2001 From: "R. Bernstein" Date: Tue, 26 Oct 2010 04:31:08 -0400 Subject: [PATCH] Makefile.am: Variable was misspelled --- Makefile.am | 2 +- lib/udf/udf_file.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index c73a369c..2c32ef90 100644 --- a/Makefile.am +++ b/Makefile.am @@ -99,7 +99,7 @@ distdir-regression: $(DISTFILES_REGRESSION) fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ - test -f $(distdir_regressoin)/$$file \ + test -f $(distdir_regression)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ diff --git a/lib/udf/udf_file.c b/lib/udf/udf_file.c index bef4ddd8..7bd71620 100644 --- a/lib/udf/udf_file.c +++ b/lib/udf/udf_file.c @@ -237,7 +237,7 @@ udf_read_block(const udf_dirent_t *p_udf_dirent, void * buf, size_t count) if (i_lba != CDIO_INVALID_LBA) { uint32_t i_max_blocks = CEILING(i_max_size, UDF_BLOCKSIZE); if ( i_max_blocks < count ) { - fprintf(stderr, "Warning: read count %u is larger than %u size of entry\n", + fprintf(stderr, "Warning: read count %u is larger than %u extent size.\n", count, i_max_blocks); fprintf(stderr, "Warning: read count truncated to %u\n", count); count = i_max_blocks;