Fix warnings.

SVN revision: 27694
This commit is contained in:
Sebastian Dransfeld 2006-12-31 11:07:18 +00:00
parent 846e9703c7
commit 03478973ca
2 changed files with 2 additions and 3 deletions

View File

@ -214,7 +214,6 @@ static Evas_Object *
_advanced_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata)
{
Evas_Object *o, *of, *ob;
E_Radio_Group *rg;
o = e_widget_table_add(evas, 1);

View File

@ -541,7 +541,7 @@ _alarm_check_date(Alarm *al, int strict)
}
else
{
printf("check_date : after (%d < %d) ! state %d\n", al->sched.date_epoch, ecore_time_get(), al->state);
printf("check_date : after (%f < %f) ! state %d\n", al->sched.date_epoch, ecore_time_get(), al->state);
/*
if (al->state == ALARM_STATE_RINGING)
alarm_alarm_ring_stop(al, 0);
@ -682,7 +682,7 @@ _epoch_find_date(char *date, int hour, int minute)
t = mktime(&ts);
printf("epoch_find_date : %d (now : %d)", t, time(NULL));
printf("epoch_find_date : %lu (now : %lu)", t, time(NULL));
return (double)t;
}