Changeset 3768

Show
Ignore:
Timestamp:
2008-11-05 16:58:12 (2 months ago)
Author:
conrad
Message:

oggz-validate: show "--max-errors %d" in error message when bailing out, to indicate
to the user how to change the max-error count

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • liboggz/trunk/src/tools/oggz-validate.c

    r3767 r3768  
    383383    if (max_errors && nr_errors > max_errors) { 
    384384      fprintf (stderr, 
    385                "oggz-validate: maximum error count reached, bailing out ...\n"); 
     385               "oggz-validate --max-errors %d: maximum error count reached, bailing out ...\n", 
     386               max_errors); 
    386387      active = 0; 
    387388    } else while ((nout = oggz_write_output (ovdata.writer, buf, n)) > 0) {