Add missing \n to printf

This commit is contained in:
Poul-Henning Kamp 2007-06-11 12:19:34 +00:00
parent 8d399898ec
commit 335fbc4646
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=170557

View File

@ -244,7 +244,7 @@ rtfree(struct rtentry *rt)
*/
RT_REMREF(rt);
if (rt->rt_refcnt > 0) {
printf("%s: %p has %lu refs", __func__, rt, rt->rt_refcnt);
printf("%s: %p has %lu refs\n", __func__, rt, rt->rt_refcnt);
goto done;
}