Commit 2c5de663 authored by Cedric Roux's avatar Cedric Roux

- Fix compiler warning under 64bits platform

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4677 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 556a3531
......@@ -169,7 +169,7 @@ LTE_eNB_DLSCH_t *new_eNB_dlsch(unsigned char Kmimo,unsigned char Mdlharq,unsigne
return(dlsch);
}
}
msg("new_eNB_dlsch exit flag %d, size of %d\n",exit_flag, sizeof(LTE_eNB_DLSCH_t));
msg("new_eNB_dlsch exit flag %d, size of %zd\n", exit_flag, sizeof(LTE_eNB_DLSCH_t));
free_eNB_dlsch(dlsch);
return(NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment