remove useless printf()

This commit is contained in:
Julien Danjou 2007-10-22 11:25:37 +02:00
parent f217cc3e09
commit dfcfa92994
1 changed files with 0 additions and 2 deletions

View File

@ -190,9 +190,7 @@ uicb_setlayout(awesome_config * awesomeconf,
/* compute current index */ /* compute current index */
for(i = 0; i < awesomeconf->nlayouts && for(i = 0; i < awesomeconf->nlayouts &&
&awesomeconf->layouts[i] != get_current_layout(awesomeconf->tags, awesomeconf->ntags); i++); &awesomeconf->layouts[i] != get_current_layout(awesomeconf->tags, awesomeconf->ntags); i++);
printf("current i %d\n", i);
i = compute_new_value_from_arg(arg, (double) i); i = compute_new_value_from_arg(arg, (double) i);
printf("next i %d\n", i);
if(i >= awesomeconf->nlayouts) if(i >= awesomeconf->nlayouts)
i = 0; i = 0;
else if(i < 0) else if(i < 0)