From 1f636b24998d2fc634be88b16f49fabae14642b7 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Wed, 22 Sep 2010 18:17:10 +0000 Subject: [PATCH] Better default input file for test/offst_source.c --- libburn/trunk/test/offst_source.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libburn/trunk/test/offst_source.c b/libburn/trunk/test/offst_source.c index 3721694d..d4011d9f 100644 --- a/libburn/trunk/test/offst_source.c +++ b/libburn/trunk/test/offst_source.c @@ -20,6 +20,7 @@ static int create_original(struct burn_source **original, char *path, int flag) { + printf("create_original: path='%s'\n", path); *original = burn_file_source_new(path, NULL); if (*original == NULL) return 0; @@ -102,7 +103,7 @@ static int free_all_sources(struct burn_source *original, int main(int argc, char **argv) { int ret; - char *path = "./README"; + char *path = "./COPYRIGHT"; struct burn_source *original = NULL, *offsetters[4]; if (argc > 1)