From 38c029d5e3f88d1ec2baae669d7bcc248eaa76a2 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 --- test/offst_source.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/offst_source.c b/test/offst_source.c index 3721694..d4011d9 100644 --- a/test/offst_source.c +++ b/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)