diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-19 13:49:17 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-19 13:49:17 +0200 |
commit | e80b4676063394f4aeb575e12752f54d45c31efd (patch) | |
tree | 4bbb46cf04250fa18fbaf2da5df88aa9068b2252 | |
parent | 044fafe8d98615c5f869e2776f36f90c9dd9a44f (diff) |
mbw.c: fix dfatool output format
-rw-r--r-- | mbw.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -473,11 +473,11 @@ int main(int argc, char **argv) te=worker(); te_sum+=te; if (test_type == TEST_MEMCPY) { - printf("[:::] memcpy"); + printf("[::] memcpy"); } else if (test_type == TEST_DUMB) { - printf("[:::] copy"); + printf("[::] copy"); } else if (test_type == TEST_MCBLOCK) { - printf("[:::] mcblock"); + printf("[::] mcblock"); } printf(" | block_size_B=%llu array_size_B=%llu ", block_size, arr_size*long_size); #ifdef MULTITHREADED |