Enlightenment CVS committal Author : devilhorns Project : e17 Module : apps/e
Dir : e17/apps/e/src/bin Modified Files: e_apps_error.c Log Message: Remove unused variables. Fix too many arguments to snprintf =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_apps_error.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- e_apps_error.c 26 Jan 2006 07:38:06 -0000 1.9 +++ e_apps_error.c 26 Jan 2006 21:36:05 -0000 1.10 @@ -61,31 +61,31 @@ { if (app->del.exit_signal == SIGINT) snprintf(buf, sizeof(buf), _("%s was interrupted by an Interrupt Singal"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGQUIT) snprintf(buf, sizeof(buf), _("%s was interrupted by a Quit Singal"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGABRT) snprintf(buf, sizeof(buf), _("%s was interrupted by an Abort Singal"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGFPE) snprintf(buf, sizeof(buf), _("%s was interrupted by a Floating Point Error"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGKILL) snprintf(buf, sizeof(buf), _("%s was interrupted by an Uninterruptable Kill Singal"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGSEGV) snprintf(buf, sizeof(buf), _("%s was interrupted by a Segmentation Fault"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGPIPE) snprintf(buf, sizeof(buf), _("%s was interrupted by a Broken Pipe"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGTERM) snprintf(buf, sizeof(buf), _("%s was interrupted by a Termination Singal"), - app->app->exe, app->del.exit_signal); + app->app->exe); else if (app->del.exit_signal == SIGBUS) snprintf(buf, sizeof(buf), _("%s was interrupted by a Bus Error"), - app->app->exe, app->del.exit_signal); + app->app->exe); else snprintf(buf, sizeof(buf), _("%s was interupted by the signal number %i"), app->app->exe, app->del.exit_signal); @@ -202,7 +202,7 @@ _e_app_error_dialog_basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata) { int error_length = 0; - Evas_Object *o, *o2, *of, *ob, *os; + Evas_Object *o, *ob, *os; E_App_Autopsy *app; app = cfd->data; @@ -234,7 +234,7 @@ { int read_length = 0; int error_length = 0; - Evas_Object *o, *of, *ob, *ot, *os; + Evas_Object *o, *of, *ob, *ot; E_App_Autopsy *app; app = cfd->data; ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs