From 644b3b4fff83c291afb97588789ea69aed646472 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Wed, 23 Sep 2020 18:17:07 -0400 Subject: [PATCH] barectf/templates/c: rename "back-end" -> "back end" Signed-off-by: Philippe Proulx --- barectf/templates/c/barectf.c.j2 | 4 ++-- barectf/templates/c/barectf.h.j2 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/barectf/templates/c/barectf.c.j2 b/barectf/templates/c/barectf.c.j2 index 0948d83..44d9b76 100644 --- a/barectf/templates/c/barectf.c.j2 +++ b/barectf/templates/c/barectf.c.j2 @@ -158,7 +158,7 @@ int _reserve_er_space(void * const vctx, const uint32_t er_size) /* Packet is full? */ if ({{ prefix }}packet_is_full(ctx)) { - /* Yes: is the back-end full? */ + /* Yes: is the back end full? */ if (ctx->cbs.is_backend_full(ctx->data)) { /* Yes: discard event record */ goto no_space; @@ -177,7 +177,7 @@ int _reserve_er_space(void * const vctx, const uint32_t er_size) ctx->cbs.close_packet(ctx->data); ctx->use_cur_last_event_ts = 0; - /* Is the back-end full? */ + /* Is the back end full? */ if (ctx->cbs.is_backend_full(ctx->data)) { /* Yes: discard event record */ goto no_space; diff --git a/barectf/templates/c/barectf.h.j2 b/barectf/templates/c/barectf.h.j2 index 7a2a58b..09633c9 100644 --- a/barectf/templates/c/barectf.h.j2 +++ b/barectf/templates/c/barectf.h.j2 @@ -87,7 +87,7 @@ struct {{ prefix }}platform_callbacks { {% endfor %} {% endif %} - /* Is the back-end full? */ + /* Is the back end full? */ int (*is_backend_full)(void *); /* Open packet */ -- 2.34.1