[next] perf callchain: Fix spelling mistake "statisitcs" -> "statistics"

Message ID 20231027084633.1167530-1-colin.i.king@gmail.com
State New
Headers
Series [next] perf callchain: Fix spelling mistake "statisitcs" -> "statistics" |

Commit Message

Colin Ian King Oct. 27, 2023, 8:46 a.m. UTC
  There are a couple of spelling mistakes in perror messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/perf/util/callchain.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Namhyung Kim Oct. 30, 2023, 6:59 p.m. UTC | #1
On Fri, 27 Oct 2023 09:46:33 +0100, Colin Ian King wrote:
> There are a couple of spelling mistakes in perror messages. Fix them.
> 
> 

Applied to perf-tools-next, thanks!
  

Patch

diff --git a/tools/perf/util/callchain.c b/tools/perf/util/callchain.c
index 99cce43ba152..8262f69118db 100644
--- a/tools/perf/util/callchain.c
+++ b/tools/perf/util/callchain.c
@@ -605,7 +605,7 @@  fill_node(struct callchain_node *node, struct callchain_cursor *cursor)
 				if (!call->brtype_stat) {
 					call->brtype_stat = zalloc(sizeof(*call->brtype_stat));
 					if (!call->brtype_stat) {
-						perror("not enough memory for the code path branch statisitcs");
+						perror("not enough memory for the code path branch statistics");
 						free(call->brtype_stat);
 						return -ENOMEM;
 					}
@@ -774,7 +774,7 @@  static enum match_result match_chain(struct callchain_cursor_node *node,
 			if (!cnode->brtype_stat) {
 				cnode->brtype_stat = zalloc(sizeof(*cnode->brtype_stat));
 				if (!cnode->brtype_stat) {
-					perror("not enough memory for the code path branch statisitcs");
+					perror("not enough memory for the code path branch statistics");
 					return MATCH_ERROR;
 				}
 			}