From 39c513b604959f557b7d7ee50563409fb8cc3611 Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Thu, 28 May 2020 16:25:07 +0100 Subject: [PATCH] red-common: Fix typo in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Frediano Ziglio Acked-by: Julien Ropé --- server/red-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/red-common.h b/server/red-common.h index 2e168520..c6814b9e 100644 --- a/server/red-common.h +++ b/server/red-common.h @@ -112,7 +112,7 @@ typedef struct GListIter { #define GLIST_FOREACH_REVERSED(_list, _type, _data) \ GLIST_FOREACH_GENERIC(_list, G_PASTE(_iter_, __LINE__), _type, _data, prev) -/* This macro allows to use GLib for a class hieranrchy allocation. +/* This macro allows to use GLib for a class hierarchy allocation. * The aims are: * - do not depend on C++ runtime, just C; * - do not throw memory exception from a C library;