aboutsummaryrefslogtreecommitdiff
path: root/Documentation/perf_counter/builtin-report.c
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/perf_counter/builtin-report.c')
-rw-r--r--Documentation/perf_counter/builtin-report.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/perf_counter/builtin-report.c b/Documentation/perf_counter/builtin-report.c
index 04fc7ec0c35..889067eb2b6 100644
--- a/Documentation/perf_counter/builtin-report.c
+++ b/Documentation/perf_counter/builtin-report.c
@@ -83,7 +83,7 @@ static struct dso *dsos__findnew(const char *name)
int nr;
if (dso == NULL) {
- dso = dso__new(name);
+ dso = dso__new(name, 0);
if (!dso)
goto out_delete_dso;
@@ -120,7 +120,7 @@ static int load_kernel(void)
{
int err = -1;
- kernel_dso = dso__new("[kernel]");
+ kernel_dso = dso__new("[kernel]", 0);
if (!kernel_dso)
return -1;