@@ -1290,7 +1290,7 @@ static void read_data_info(struct list_head *handle_list, enum output_type otype
die("error in reading buffer instance");
new_handle = tracecmd_buffer_instance_handle(handles->handle, i);
if (!new_handle) {
- warning("could not retreive handle %s", name);
+ warning("could not retrieve handle %s", name);
continue;
}
add_handle(new_handle, name);
@@ -1324,7 +1324,7 @@ static void read_data_info(struct list_head *handle_list, enum output_type otype
if (last_record) {
int cpu = last_record->cpu;
if (cpu >= last_handle->cpus)
- die("cpu %d creater than %d\n", cpu, last_handle->cpus);
+ die("cpu %d greater than %d\n", cpu, last_handle->cpus);
if (tscheck &&
last_handle->last_timestamp[cpu] > last_record->ts) {
errno = 0;
Fixed typos in "trace-cmd report" messages that report reading and parsing errors. Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com> --- tracecmd/trace-read.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)