diff --git a/openair1/SCHED/phy_procedures_lte_eNb.c b/openair1/SCHED/phy_procedures_lte_eNb.c
index 24e40f472bf9d530e9ad664ad0ece82641aa742a..d728ffdcb9df61b82c14daf7741c63fb530e5995 100755
--- a/openair1/SCHED/phy_procedures_lte_eNb.c
+++ b/openair1/SCHED/phy_procedures_lte_eNb.c
@@ -322,7 +322,6 @@ int get_nCCE_offset(const unsigned char L, const int nCCE, const int common_dci,
 
     for (m = nb_candidates-1 ; m >=0 ; m--) {
       search_space_free = 1;
-      printf("Checking m %d\n",m);
       for (l=0; l<L; l++) {
         if (CCE_table[(m*L) + l] == 1) {
           search_space_free = 0;
@@ -333,7 +332,6 @@ int get_nCCE_offset(const unsigned char L, const int nCCE, const int common_dci,
       if (search_space_free == 1) {
         for (l=0; l<L; l++)
           CCE_table[(m*L)+l]=1;
-	printf("OK");
         return(m*L);
       }
     }