diff --git a/apps/netio.c b/apps/netio.c index 82f7fa37..5cedb691 100644 --- a/apps/netio.c +++ b/apps/netio.c @@ -372,7 +372,7 @@ int TCP_Bench(void) end = rdtsc(); } while((end-start)/freq < 6000000ULL /* = 6s */); - kprintf("%llu KBytes/s\n", (nData/1024ULL)/((end-start)/(1000000ULL*freq))); + kprintf("%llu KBytes/s", (nData/1024ULL)/((end-start)/(1000000ULL*freq))); kprintf(" Tx, "); @@ -416,7 +416,7 @@ int TCP_Bench(void) } while (cBuffer[0] == 0 && rc > 0); end = rdtsc(); - kprintf("%llu KBytes/s\n", (nData/1024ULL)/((end-start)/(1000000ULL*freq))); + kprintf("%llu KBytes/s", (nData/1024ULL)/((end-start)/(1000000ULL*freq))); kprintf(" Rx.\n"); }