diff options
author | Savio Sena <savio@expertisesolutions.com.br> | 2014-05-24 02:27:11 +0200 |
---|---|---|
committer | Cedric Bail <cedric.bail@free.fr> | 2014-05-24 02:27:15 +0200 |
commit | 72ee78b929d6af5436d09eee1a5ef41719b5f918 (patch) | |
tree | 187c336777624af8194778959beb7ff3a65e0cbb /src/static_libs | |
parent | e68225ae691bfa5d8df694fc1f4bd96f1fee9003 (diff) | |
download | efl-72ee78b929d6af5436d09eee1a5ef41719b5f918.tar.gz |
efl: remove some warnings.
Summary:
Mainly from the examples but also from libunibreak and tests/eet.
I'm not sure if it's really worth to remove warnings from the examples
-- because it adds pedantic-ness to something supposed to be didatic,
but I leave for you guys to judge.
Reviewers: tasn, cedric
CC: felipealmeida, raster, smohanty, cedric
Differential Revision: https://phab.enlightenment.org/D896
Signed-off-by: Cedric Bail <cedric.bail@free.fr>
Diffstat (limited to 'src/static_libs')
-rw-r--r-- | src/static_libs/libunibreak/wordbreak.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/static_libs/libunibreak/wordbreak.c b/src/static_libs/libunibreak/wordbreak.c index e67a1f8507..5c1e3d0e79 100644 --- a/src/static_libs/libunibreak/wordbreak.c +++ b/src/static_libs/libunibreak/wordbreak.c @@ -128,6 +128,7 @@ static void set_brks_to( while (posNext < posEnd) { utf32_t ch; + (void)ch; ch = get_next_char(s, len, &posNext); assert(ch != EOS); for (; posStart < posNext - 1; ++posStart) |