Fix potential uninitialized variables bug

Test: build
Change-Id: I6865974e3f73f3c24cf2a7931a4fa897abc8e47d
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";