summaryrefslogtreecommitdiff
path: root/host/lib/file_keys.c
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/file_keys.c')
-rw-r--r--host/lib/file_keys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/file_keys.c b/host/lib/file_keys.c
index 0aba6b86..7df7ceb2 100644
--- a/host/lib/file_keys.c
+++ b/host/lib/file_keys.c
@@ -29,7 +29,7 @@ int DigestFile(char *input_file, enum vb2_hash_algorithm alg,
struct vb2_digest_context ctx;
if( (input_fd = open(input_file, O_RDONLY)) == -1 ) {
- VBDEBUG(("Couldn't open %s\n", input_file));
+ fprintf(stderr, "Couldn't open %s\n", input_file);
return VB2_ERROR_UNKNOWN;
}
vb2_digest_init(&ctx, alg);