Merge "Fix potential uninitialized variables bug"
diff --git a/tests/benchmark/fs_benchmark.cpp b/tests/benchmark/fs_benchmark.cpp
index 583480e..220e004 100644
--- a/tests/benchmark/fs_benchmark.cpp
+++ b/tests/benchmark/fs_benchmark.cpp
@@ -176,7 +176,7 @@
             std::printf("total %" PRIu64 " bytes, took %.3g seconds ", res->size, elapsed_time);
 
             double speed = res->size / elapsed_time;
-            const char* unit;
+            const char* unit = "bytes";
             if (speed >= 1000) {
                 speed /= 1024;
                 unit = "KB";