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;