From f9ce82ebb2c6d94b94dc0dee5e8f619d1a044775 Mon Sep 17 00:00:00 2001 From: tasn Date: Sun, 12 Jun 2011 07:58:55 +0000 Subject: [PATCH] Eina ustrbuf: Fixed eina_ustrbuf_prepend_char. Thanks to Ulrich Eckhardt for the report. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@60235 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/include/eina_ustrbuf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/eina_ustrbuf.h b/src/include/eina_ustrbuf.h index 666d3d4..4596c9d 100644 --- a/src/include/eina_ustrbuf.h +++ b/src/include/eina_ustrbuf.h @@ -305,18 +305,18 @@ EAPI Eina_Bool eina_ustrbuf_insert_char(Eina_UStrbuf *buf, Eina_Unicode c, size_ #define eina_ustrbuf_prepend_length(buf, str, length) eina_ustrbuf_insert_length(buf, str, length, 0) /** - * @def eina_ustrbuf_prepend_Eina_Unicode *(buf, str) - * @brief Prepend the given Eina_Unicode *acter to the given buffer + * @def eina_ustrbuf_prepend_char(buf, c) + * @brief Prepend the given unicode character to the given buffer * * @param buf The string buffer to prepend to. - * @param c The Eina_Unicode *acter to prepend. + * @param c The Eina_Unicode character to prepend. * @return #EINA_TRUE on success, #EINA_FALSE on failure. * * This macro is calling eina_ustrbuf_insert_Eina_Unicode *() at position 0. If * @p buf can't prepend it, #EINA_FALSE is returned, otherwise * #EINA_TRUE is returned. */ -#define eina_ustrbuf_prepend_Eina_Unicode *(buf, c)eina_ustrbuf_insert_Eina_Unicode * (buf, c, 0) +#define eina_ustrbuf_prepend_char(buf, c) eina_ustrbuf_insert_char(buf, c, 0) /** * @def eina_ustrbuf_prepend_printf(buf, fmt, ...) -- 2.7.4