commit 8f944df821fee294232b67348b7dcc910830218e
parent 8487a4512cfda6a5f07592ae6bc7b03d8d763fa4
Author: William Casarin <jb55@jb55.com>
Date: Thu, 11 Oct 2018 17:27:13 -0700
remove debug
Diffstat:
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/viscal.c b/viscal.c
@@ -804,8 +804,6 @@ static void expand_selection_relative(struct cal *cal, int sign)
{
int *step = &cal->timeblock_step;
- printf("step %d\n", *step);
-
if (sign < 0 && cal->timeblock_size <= 15)
*step = 5;
else if (sign > 0 && cal->timeblock_size >= 15)
@@ -817,8 +815,6 @@ static void expand_selection_relative(struct cal *cal, int sign)
return;
cal->timeblock_size += amount;
-
- printf("timeblock_size %d\n", cal->timeblock_size);
}
static void expand_selection(struct cal *cal)