aboutsummaryrefslogtreecommitdiff
path: root/src/core/test_core_api_reliability.c
diff options
context:
space:
mode:
authorPhil <phil.buschmann@tum.de>2018-08-09 10:23:29 +0200
committerPhil <phil.buschmann@tum.de>2018-08-09 10:23:29 +0200
commite083dd6ae0b96f30328d0d54bc7a55f6cd34b2b4 (patch)
tree8c993110fb5958c30f41f40794bd75941a42aca0 /src/core/test_core_api_reliability.c
parentcffad0ad30400dda7c7c4ef77ed7625013193dbe (diff)
parentb3932f39b028d5db0d2e641e8593679c657b6bd1 (diff)
downloadgnunet-e083dd6ae0b96f30328d0d54bc7a55f6cd34b2b4.tar.gz
gnunet-e083dd6ae0b96f30328d0d54bc7a55f6cd34b2b4.zip
-Merge branch 'master' into gsoc2018/rest_api
Diffstat (limited to 'src/core/test_core_api_reliability.c')
-rw-r--r--src/core/test_core_api_reliability.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
index 4cc5b4bcd..c7c71f1f1 100644
--- a/src/core/test_core_api_reliability.c
+++ b/src/core/test_core_api_reliability.c
@@ -11,7 +11,7 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17*/ 17*/
@@ -143,6 +143,8 @@ do_shutdown (void *cls)
143 unsigned long long delta; 143 unsigned long long delta;
144 144
145 delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us; 145 delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us;
146 if (0 == delta)
147 delta = 1;
146 FPRINTF (stderr, 148 FPRINTF (stderr,
147 "\nThroughput was %llu kb/s\n", 149 "\nThroughput was %llu kb/s\n",
148 total_bytes * 1000000LL / 1024 / delta); 150 total_bytes * 1000000LL / 1024 / delta);