remove debugging printf statement

This commit is contained in:
Jfreegman 2013-07-31 15:34:34 -04:00
parent 0d5eef4b43
commit 3eafbc900e

View File

@ -61,9 +61,7 @@ void print_friendlist()
new_lines("[i] Friend List:"); new_lines("[i] Friend List:");
uint32_t i; uint32_t i;
for (i = 0; i <= num_requests; i++) { for (i = 0; i <= num_requests; i++) {
printf ("num_resusts: %d\n", num_requests);
char fstring[128]; char fstring[128];
getname(i, (uint8_t*)name); getname(i, (uint8_t*)name);
if (strlen(name) <= 0) { if (strlen(name) <= 0) {
sprintf(fstring, "[i] Friend: NULL\n\tid: %i", i); sprintf(fstring, "[i] Friend: NULL\n\tid: %i", i);