From 6c2884bdcbfba981fc5f42717169c8f1184231e4 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 30 Aug 2013 12:15:07 +0900 Subject: [PATCH] oops.. , not m --- src/bin/termpty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/termpty.c b/src/bin/termpty.c index d5c5e2b5..2a8696af 100644 --- a/src/bin/termpty.c +++ b/src/bin/termpty.c @@ -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; }