commit | 8da1746458c7a9da360d2d54a77c14493bb68fcb | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Wed Sep 06 20:52:37 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Sep 06 20:52:37 2023 +0000 |
tree | f5524a38b20c21ca88441289e82e4ecc647de3ac | |
parent | fe9bd312a8d5a5ea11628e90014f59bdb0cf0044 [diff] | |
parent | 740956c856a23fbb1f783b38a4600d2af7561822 [diff] |
Merge "Greatly reduce the space used by properties filenames." into main
diff --git a/libc/system_properties/include/system_properties/system_properties.h b/libc/system_properties/include/system_properties/system_properties.h index fa5e3de..4d84b39 100644 --- a/libc/system_properties/include/system_properties/system_properties.h +++ b/libc/system_properties/include/system_properties/system_properties.h
@@ -53,7 +53,8 @@ const char* c_str() { return filename_; } private: - char filename_[1024]; + // Typically something like "/dev/__properties__/properties_serial". + char filename_[128]; }; class SystemProperties {