diff options
author | Christopher Ferris <cferris@google.com> | 2013-09-30 11:16:17 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2013-09-30 11:16:17 -0700 |
commit | 474afff2295b66440386bb40228ea51850e3d3be (patch) | |
tree | b60cf78a0d73be3749cecd8a61baf0fedc9a4fca /include/backtrace | |
parent | f41cf2086d759987708321772f0c67f7d7034509 (diff) | |
download | system_core-474afff2295b66440386bb40228ea51850e3d3be.zip system_core-474afff2295b66440386bb40228ea51850e3d3be.tar.gz system_core-474afff2295b66440386bb40228ea51850e3d3be.tar.bz2 |
Update comment from review.
Missed this typo that enh pointed out.
Bug: 8410085
Change-Id: Ic636ae218fc153bc5e3b1a0fdc2f7161980e5eec
Diffstat (limited to 'include/backtrace')
-rw-r--r-- | include/backtrace/backtrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/backtrace/backtrace.h b/include/backtrace/backtrace.h index 38a9645..b6bff38 100644 --- a/include/backtrace/backtrace.h +++ b/include/backtrace/backtrace.h @@ -43,7 +43,7 @@ typedef struct { size_t stack_size; /* The size of the stack, zero indicate an unknown stack size. */ const char* map_name; /* The name of the map to which this pc belongs, NULL indicates the pc doesn't belong to a known map. */ uintptr_t map_offset; /* pc relative to the start of the map, only valid if map_name is not NULL. */ - char* proc_name; /* The function name associated with this pc, NULL if no not found. */ + char* proc_name; /* The function name associated with this pc, NULL if not found. */ uintptr_t proc_offset; /* pc relative to the start of the procedure, only valid if proc_name is not NULL. */ } backtrace_frame_data_t; |