commit | 4ca56281e4c1330e976ab745127f459c434009ab | [log] [tgz] |
---|---|---|
author | Andrew Schneer <andrew.schneer@bluerivertech.com> | Wed Feb 14 17:59:51 2024 -0800 |
committer | Austin Schuh <austin.linux@gmail.com> | Sat May 11 14:14:43 2024 -0700 |
tree | 08d988a6eb8bff49501c6525044980d458f74bef | |
parent | 1ea5e860247dafe6e256ca51f0231fb0f74c11a4 [diff] |
Add note on size units in file_operations.h Change-Id: I59adb55cf6d8b494d3e0c1ccc4d6792c4dbc4980 Signed-off-by: James Kuszmaul <james.kuszmaul@bluerivertech.com>
diff --git a/aos/events/logging/file_operations.h b/aos/events/logging/file_operations.h index 538ae60..0c2133d 100644 --- a/aos/events/logging/file_operations.h +++ b/aos/events/logging/file_operations.h
@@ -16,7 +16,7 @@ public: struct File { std::string name; - size_t size; + size_t size; // bytes. }; virtual ~FileOperations() = default;