Skip to content

Commit

Permalink
Fix typo in JSON output (thanks to gurpreetatwal)
Browse files Browse the repository at this point in the history
  • Loading branch information
beandog committed Nov 19, 2021
1 parent f2918b9 commit 547c837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dvd_json.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ void dvd_json(struct dvd_info dvd_info, struct dvd_track dvd_tracks[], uint16_t
printf(" \"msecs\": %" PRIu32 ",\n", dvd_cell.msecs);
printf(" \"first sector\": %" PRIu64 ",\n", dvd_cell.first_sector);
printf(" \"last sector\": %" PRIu64 ",\n", dvd_cell.last_sector);
printf(" \"filesize:\": %" PRIu64 "\n", dvd_cell.filesize);
printf(" \"filesize\": %" PRIu64 "\n", dvd_cell.filesize);
printf(" }");

if(c + 1 < dvd_track.cells)
Expand Down

0 comments on commit 547c837

Please sign in to comment.