From b0920522970be347fe74fc199903c99e9bf32fa0 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 16 Jan 2014 12:53:23 +0000 Subject: [PATCH] Tiling2: Removed debug printfs. --- src/modules/tiling/e_mod_tiling.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/modules/tiling/e_mod_tiling.c b/src/modules/tiling/e_mod_tiling.c index 3534ffad2..909cc8259 100644 --- a/src/modules/tiling/e_mod_tiling.c +++ b/src/modules/tiling/e_mod_tiling.c @@ -695,12 +695,10 @@ static void _move_or_resize(E_Client *ec) if (abs(extra->expected.w - ec->w) >= MAX(ec->icccm.step_w, 1)) { w_diff = ((double) ec->w) / extra->expected.w; - printf("w %d %d %f\n", extra->expected.w, ec->w, w_diff); } if (abs(extra->expected.h - ec->h) >= MAX(ec->icccm.step_h, 1)) { h_diff = ((double) ec->h) / extra->expected.h; - printf("h %d %d %f\n", extra->expected.h, ec->h, h_diff); } if (extra->expected.x != ec->x) {