[netperf-dev] netperf2 commit notice r466 - trunk/src
raj at netperf.org
raj at netperf.org
Wed Jul 27 14:53:08 PDT 2011
Author: raj
Date: 2011-07-27 14:53:08 -0700 (Wed, 27 Jul 2011)
New Revision: 466
Modified:
trunk/src/nettest_omni.c
Log:
int vs char nonsense
Modified: trunk/src/nettest_omni.c
===================================================================
--- trunk/src/nettest_omni.c 2011-07-27 21:51:28 UTC (rev 465)
+++ trunk/src/nettest_omni.c 2011-07-27 21:53:08 UTC (rev 466)
@@ -1523,7 +1523,7 @@
j = 0;
}
else if (isprint(c)) {
- name[namepos++] = c;
+ name[namepos++] = (char)c;
}
column++;
}
More information about the netperf-dev
mailing list