efl: unused variable removed, removing local variable assignment which has no use at all.

Reviewers: raster, cedric

Reviewed By: cedric

Subscribers: rajeshps, jpeg

Differential Revision: https://phab.enlightenment.org/D5304

Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
This commit is contained in:
Prince Kumar Dubey 2017-10-13 12:11:41 -07:00 committed by Cedric Bail
parent 68a455d10c
commit 1235459ed3
5 changed files with 3 additions and 7 deletions

View File

@ -119,7 +119,6 @@ _mkstemp(char *suffix, int val)
suffix[4] = lookup[v % 62];
v /= 62;
suffix[5] = lookup[v % 62];
v /= 62;
val += 7777;

View File

@ -137,12 +137,12 @@ _eina_test_tls_thread(void *data EINA_UNUSED, Eina_Thread t EINA_UNUSED)
int *ptr;
ptr = eina_tls_get(key);
fail_if(eina_tls_get(key) != NULL);
fail_if(ptr != NULL);
fail_if(!eina_tls_set(key, _eina_test_tls_alloc(24)));
ptr = eina_tls_get(key);
fail_if(eina_tls_get(key) == NULL);
fail_if(ptr == NULL);
fail_if(*ptr != 24);
return NULL;

View File

@ -376,7 +376,6 @@ END_TEST
START_TEST(eina_log_customize)
{
struct log_ctx ctx;
int d;
/* please don't define EINA_LOG_LEVELS for it */

View File

@ -390,8 +390,6 @@ START_TEST(strbuf_realloc)
eina_strbuf_remove(buf, 0, 0 + 32);
fail_if(eina_strbuf_length_get(buf) != sz - 32);
sz -= 32;
eina_strbuf_free(buf);

View File

@ -161,7 +161,7 @@ START_TEST(eina_unicode_strncpy_test)
fail_if(buf[9] != 0);
buf[0] = '7';
rv = eina_unicode_strncpy(buf, STR1, 0);
eina_unicode_strncpy(buf, STR1, 0);
fail_if(buf[0] != '7');
#ifdef EINA_SAFETY_CHECKS