aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/probe-event.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/probe-event.h')
-rw-r--r--tools/perf/util/probe-event.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/probe-event.h b/tools/perf/util/probe-event.h
index ab5492901708..e7ff0d02c0d4 100644
--- a/tools/perf/util/probe-event.h
+++ b/tools/perf/util/probe-event.h
@@ -74,15 +74,15 @@ struct perf_probe_event {
74/* Line number container */ 74/* Line number container */
75struct line_node { 75struct line_node {
76 struct list_head list; 76 struct list_head list;
77 unsigned int line; 77 int line;
78}; 78};
79 79
80/* Line range */ 80/* Line range */
81struct line_range { 81struct line_range {
82 char *file; /* File name */ 82 char *file; /* File name */
83 char *function; /* Function name */ 83 char *function; /* Function name */
84 unsigned int start; /* Start line number */ 84 int start; /* Start line number */
85 unsigned int end; /* End line number */ 85 int end; /* End line number */
86 int offset; /* Start line offset */ 86 int offset; /* Start line offset */
87 char *path; /* Real path name */ 87 char *path; /* Real path name */
88 struct list_head line_list; /* Visible lines */ 88 struct list_head line_list; /* Visible lines */