efl: formatting

This commit is contained in:
Sebastian Dransfeld 2013-06-20 13:08:36 +02:00
parent 51023d2d4f
commit 068f1ddc62
14 changed files with 22 additions and 22 deletions

View File

@ -102,7 +102,7 @@ struct _Script_Lua_Writer
int size;
};
typedef struct _Script_Write Script_Write;;
typedef struct _Script_Write Script_Write;
typedef struct _Head_Write Head_Write;
typedef struct _Fonts_Write Fonts_Write;
typedef struct _Image_Write Image_Write;

View File

@ -796,7 +796,7 @@ _edje_load_or_show_error(Evas_Object *edje, const char *file, const char *group)
if (edje_object_file_set(edje, file, group))
{
edje_object_signal_callback_add(edje, "edje,change,file", "edje", _edje_reload, NULL);;
edje_object_signal_callback_add(edje, "edje,change,file", "edje", _edje_reload, NULL);
evas_object_focus_set(edje, EINA_TRUE);
return EINA_TRUE;
}

View File

@ -144,7 +144,7 @@ int main(int c, char **v)
{
int wfd, rfd;
Slave_Command cmd;
void *params = NULL;;
void *params = NULL;
Eina_Bool quit = EINA_FALSE;
if (c < 3)

View File

@ -83,7 +83,7 @@ _mouse_up(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *e
{
Ecore_Evas *ee = data;
size_t len = 0;
char *buf = NULL;;
char *buf = NULL;
num++;

View File

@ -431,7 +431,7 @@ static inline unsigned dns_k_permutor_powof(unsigned n) {
unsigned m, i = 0;
for (m = 1; m < n; m <<= 1, i++)
;;
;
return i;
} /* dns_k_permutor_powof() */
@ -748,7 +748,7 @@ size_t dns_strlcpy(char *dst, const char *src, size_t lim) {
}
while (*s++ != '\0')
;;
;
return s - src - 1;
} /* dns_strlcpy() */
@ -772,7 +772,7 @@ size_t dns_strlcat(char *dst, const char *src, size_t lim) {
p = s;
while (*s++ != '\0')
;;
;
return lim + (s - p - 1);
} /* dns_strlcat() */
@ -875,7 +875,7 @@ static long dns_send(int fd, const void *src, size_t lim, int flags) {
if (count == -1 && errno == EPIPE) {
while (-1 == sigtimedwait(&piped, NULL, &(struct timespec){ 0, 0 }) && errno == EINTR)
;;
;
}
if ((error = dns_sigmask(SIG_SETMASK, &blocked, NULL)))

View File

@ -547,7 +547,7 @@ ecore_con_eet_data_callback_add(Ecore_Con_Eet *ece, const char *name, Ecore_Con_
if (!ece) return ;
eced = calloc(1, sizeof (Ecore_Con_Eet_Data));;
eced = calloc(1, sizeof (Ecore_Con_Eet_Data));
if (!eced) return ;
eced->func = func;
@ -571,7 +571,7 @@ ecore_con_eet_raw_data_callback_add(Ecore_Con_Eet *ece, const char *name, Ecore_
if (!ece) return ;
eced = calloc(1, sizeof (Ecore_Con_Eet_Raw_Data));;
eced = calloc(1, sizeof (Ecore_Con_Eet_Raw_Data));
if (!eced) return ;
eced->func = func;

View File

@ -233,7 +233,7 @@ ecore_evas_object_associate(Ecore_Evas *ee, Evas_Object *obj, Ecore_Evas_Object_
if (!_ecore_evas_object_evas_check(__FUNCTION__, ee, obj))
return EINA_FALSE;
old_ee = _evas_object_associate_get(obj);;
old_ee = _evas_object_associate_get(obj);
if (old_ee)
ecore_evas_object_dissociate(old_ee, obj);

View File

@ -539,7 +539,7 @@ eina_module_find(const Eina_Array *array, const char *module)
continue;
if (!strncmp(module, file_m, len))
return m;;
return m;
}
return NULL;

View File

@ -5105,7 +5105,7 @@ EAPI const unsigned int eina_prime_table[] =
EAPI Eina_Value *
eina_value_new(const Eina_Value_Type *type)
{
Eina_Value *value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));;
Eina_Value *value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));
if (!value)
{
eina_error_set(EINA_ERROR_OUT_OF_MEMORY);
@ -5209,7 +5209,7 @@ eina_value_array_new(const Eina_Value_Type *subtype, unsigned int step)
EINA_SAFETY_ON_FALSE_RETURN_VAL(eina_value_type_check(subtype), EINA_FALSE);
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));;
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));
if (!value)
return NULL;
@ -5229,7 +5229,7 @@ eina_value_list_new(const Eina_Value_Type *subtype)
EINA_SAFETY_ON_FALSE_RETURN_VAL(eina_value_type_check(subtype), EINA_FALSE);
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));;
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));
if (!value)
return NULL;
@ -5249,7 +5249,7 @@ eina_value_hash_new(const Eina_Value_Type *subtype, unsigned int buckets_power_s
EINA_SAFETY_ON_FALSE_RETURN_VAL(eina_value_type_check(subtype), EINA_FALSE);
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));;
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));
if (!value)
return NULL;
@ -5267,7 +5267,7 @@ eina_value_struct_new(const Eina_Value_Struct_Desc *desc)
{
Eina_Value *value;
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));;
value = eina_mempool_malloc(_eina_value_mp, sizeof(Eina_Value));
if (!value)
return NULL;

View File

@ -91,7 +91,7 @@ evil_utf16_to_utf8(const wchar_t *text16)
return NULL;
#if _WIN32_WINNT >= 0x0600
flag = WC_ERR_INVALID_CHARS;;
flag = WC_ERR_INVALID_CHARS;
#endif
size8 = WideCharToMultiByte(CP_UTF8, flag, text16, -1, NULL, 0, NULL, NULL);

View File

@ -1797,7 +1797,7 @@ static void _players_all_from(const char *path)
const Eina_File_Direct_Info *info;
int count = 0;
Eina_Iterator *itr = eina_file_direct_ls(path);
if (!itr) goto end;;
if (!itr) goto end;
EINA_ITERATOR_FOREACH(itr, info)
{
if (access(info->path, R_OK | X_OK) == 0)

View File

@ -318,7 +318,7 @@ _pool_tex_find(Evas_Engine_GL_Context *gc, int w, int h,
pt->slot = -1;
pt->fslot = -1;
pt->whole = 1;
*apt = _pool_tex_alloc(pt, w, h, u, v);;
*apt = _pool_tex_alloc(pt, w, h, u, v);
return pt;
}

View File

@ -1155,7 +1155,7 @@ evas_image_load_file_data_jpeg_alpha_internal(Image_Entry *ie, FILE *f, int *err
{
jpeg_destroy_decompress(&cinfo);
*error = EVAS_LOAD_ERROR_UNKNOWN_FORMAT;
return EINA_FALSE;;
return EINA_FALSE;
}
data = alloca(w * 16 * 3);
if (!ie->flags.loaded)

View File

@ -476,7 +476,7 @@ START_TEST(eina_model_test_deep_copy)
s1 = eina_model_to_string(m);
fail_unless(s1 != NULL);
ck_assert_str_eq(s1, "Eina_Model_Type_Generic({a: 0, b: 1, c: 2, d: 3, e: 4}, [Eina_Model_Type_Generic({x: 0}, []), Eina_Model_Type_Generic({x: 1}, []), Eina_Model_Type_Generic({x: 2}, []), Eina_Model_Type_Generic({x: 3}, []), Eina_Model_Type_Generic({x: 4}, [])])");;
ck_assert_str_eq(s1, "Eina_Model_Type_Generic({a: 0, b: 1, c: 2, d: 3, e: 4}, [Eina_Model_Type_Generic({x: 0}, []), Eina_Model_Type_Generic({x: 1}, []), Eina_Model_Type_Generic({x: 2}, []), Eina_Model_Type_Generic({x: 3}, []), Eina_Model_Type_Generic({x: 4}, [])])");
cp = eina_model_deep_copy(m);
fail_unless(cp != NULL);