Skip to content

Commit

Permalink
Fix a typo, tracepint -> tracepoint (#2559)
Browse files Browse the repository at this point in the history
Fix a typo, tracepint -> tracepoint
  • Loading branch information
eklitzke authored and yonghong-song committed Oct 19, 2019
1 parent 11bf5d0 commit 54aa257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/bcc/__init__.py
Expand Up @@ -868,7 +868,7 @@ def detach_raw_tracepoint(self, tp=b""):

@staticmethod
def support_raw_tracepoint():
# kernel symbol "bpf_find_raw_tracepoint" indicates raw_tracepint support
# kernel symbol "bpf_find_raw_tracepoint" indicates raw_tracepoint support
if BPF.ksymname("bpf_find_raw_tracepoint") != -1 or \
BPF.ksymname("bpf_get_raw_tracepoint") != -1:
return True
Expand Down

0 comments on commit 54aa257

Please sign in to comment.