billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=f1857527da0416e917708d9ed8a9c752f9fdc393
commit f1857527da0416e917708d9ed8a9c752f9fdc393 Author: Boris Faure <[email protected]> Date: Sat Apr 25 15:20:54 2020 +0200 termptyesc: mark _safechar() as pure --- src/bin/termptyesc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c index 43ac5c3..1014ab2 100644 --- a/src/bin/termptyesc.c +++ b/src/bin/termptyesc.c @@ -77,8 +77,8 @@ static const char *const ASCII_CHARS_TABLE[] = "US" // '\037' }; -static const char * -_safechar(unsigned int c) +static const char * EINA_PURE +_safechar(const unsigned int c) { static char _str[9]; --
