Skip to content

Commit

Permalink
fix va_args
Browse files Browse the repository at this point in the history
  • Loading branch information
nna774 committed Jun 14, 2021
1 parent 550ff20 commit 45ea715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exif_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ exif_stack_t* exif_dump(ExifData* data) {

void show_log(ExifLog *log, ExifLogCode code, const char *domain, const char *format, va_list args, void* _) {
printf("domain %s: %s: %s\n ", domain, exif_log_code_get_title(code), exif_log_code_get_message (code));
printf(format, args);
vprintf(format, args);
puts("");
}

Expand Down

0 comments on commit 45ea715

Please sign in to comment.