1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-21 11:13:30 +00:00

Hide fflush(3) under ifdef DEBUG.

This commit is contained in:
Gleb Smirnoff 2005-05-05 21:07:34 +00:00
parent c8564bffd2
commit ae0440572f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=145928

View File

@ -188,8 +188,8 @@ AliasHandleName(u_char * p, char *pmax)
}
#ifdef DEBUG
printf(":");
#endif
fflush(stdout);
#endif
}
/* Set up to out of Name field */
@ -630,12 +630,12 @@ AliasHandleResource(
"\nUnknown Type of Resource %0x\n",
ntohs(q->type)
);
fflush(stdout);
#endif
break;
}
count--;
}
fflush(stdout);
return ((u_char *) q);
}