oops.. , not m

This commit is contained in:
Carsten Haitzler 2013-08-30 12:15:07 +09:00
parent 3a2a58473b
commit 6c2884bdcb
1 changed files with 2 additions and 2 deletions

View File

@ -285,13 +285,13 @@ termpty_new(const char *cmd, Eina_Bool login_shell, const char *cd, int w, int h
ty->screen = calloc(1, sizeof(Termcell) * ty->w * ty->h);
if (!ty->screen)
{
ERR("Allocation of term screen %ix%i", ty->wm ty->h);
ERR("Allocation of term screen %ix%i", ty->w, ty->h);
goto err;
}
ty->screen2 = calloc(1, sizeof(Termcell) * ty->w * ty->h);
if (!ty->screen2)
{
ERR("Allocation of term screen2 %ix%i", ty->wm ty->h);
ERR("Allocation of term screen2 %ix%i", ty->w, ty->h);
goto err;
}