too much \n in einal log macros

SVN revision: 42854
This commit is contained in:
Vincent Torri 2009-10-02 04:40:46 +00:00
parent 1de064d479
commit 832b0ee18f
3 changed files with 4 additions and 4 deletions

View File

@ -2441,7 +2441,7 @@ _ecore_evas_fps_debug_rendertime_add(double t)
}
else if ((tim - rlapse) >= 0.5)
{
DBG("FRAME: %i, FPS: %3.1f, RTIME %3.0f%%\n",
DBG("FRAME: %i, FPS: %3.1f, RTIME %3.0f%%",
frames,
(frames - flapse) / (tim - rlapse),
(100.0 * rtime) / (tim - rlapse)

View File

@ -447,7 +447,7 @@ ecore_evas_quartz_new(const char* name, int w, int h)
return NULL;
#else
ERR("OUTCH name='%s' size=%dx%d!\n", name ? name : "", w, h);
ERR("OUTCH name='%s' size=%dx%d!", name ? name : "", w, h);
return NULL;
#endif
}

View File

@ -446,7 +446,7 @@ ecore_evas_sdl_new(const char* name, int w, int h, int fullscreen, int hwsurface
EAPI Ecore_Evas*
ecore_evas_sdl_new(const char* name __UNUSED__, int w __UNUSED__, int h __UNUSED__, int fullscreen __UNUSED__, int hwsurface __UNUSED__, int noframe __UNUSED__, int alpha __UNUSED__)
{
ERR("OUTCH !\n");
ERR("OUTCH !");
return NULL;
}
#endif
@ -469,7 +469,7 @@ ecore_evas_sdl16_new(const char* name, int w, int h, int fullscreen, int hwsurfa
EAPI Ecore_Evas*
ecore_evas_sdl16_new(const char* name __UNUSED__, int w __UNUSED__, int h __UNUSED__, int fullscreen __UNUSED__, int hwsurface __UNUSED__, int noframe __UNUSED__, int alpha __UNUSED__)
{
ERR("OUTCH !\n");
ERR("OUTCH !");
return NULL;
}
#endif