Don't use err() for non-error messages

This commit is contained in:
Rodrigo Arias 2023-03-24 12:50:48 +01:00 committed by Rodrigo Arias Mallo
parent f35741bac7
commit 3d8e2000fd
2 changed files with 8 additions and 9 deletions

View File

@ -346,7 +346,7 @@ pre_cpu(struct emu *emu)
{
switch (emu->ev->v) {
case 'n':
err("ignoring old event OCn");
warn("ignoring old event OCn");
return 0;
default:
err("unknown cpu event value %c",

View File

@ -367,7 +367,7 @@ process_trace(struct trace *trace)
}
} else {
if (stream_check(stream) != 0) {
err("stream %s is not sorted", stream->relpath);
info("stream %s is not sorted", stream->relpath);
/* When checking, report all errors and
* then fail */
ret = -1;
@ -379,9 +379,9 @@ process_trace(struct trace *trace)
if (operation_mode == CHECK) {
if (ret == 0) {
err("all streams sorted");
info("all streams sorted");
} else {
err("streams NOT sorted");
info("streams NOT sorted");
}
}
@ -458,13 +458,12 @@ main(int argc, char *argv[])
return 1;
}
if (process_trace(trace) != 0) {
err("failed to process trace: %s", tracedir);
return 1;
}
int ret = process_trace(trace);
free(trace);
if (ret)
return 1;
return 0;
}