Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf diff: Replaces some ',' as separator with the more usual ';'

When wrapping code, use ';' better than using ',' which is more in line
with the coding habits of most engineers.

Signed-off-by: Lu Hongfei <luhongfei@vivo.com>
Acked-by: Ian Rogers <irogers@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: opensource.kernel@vivo.com
Link: https://lore.kernel.org/r/20230706094635.1553-1-luhongfei@vivo.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Lu Hongfei and committed by
Arnaldo Carvalho de Melo
681f34d5 7b47623b

+2 -2
+2 -2
tools/perf/builtin-diff.c
··· 1915 1915 struct perf_data *data = &d->data; 1916 1916 1917 1917 data->path = use_default ? defaults[i] : argv[i]; 1918 - data->mode = PERF_DATA_MODE_READ, 1919 - data->force = force, 1918 + data->mode = PERF_DATA_MODE_READ; 1919 + data->force = force; 1920 1920 1921 1921 d->idx = i; 1922 1922 }