projects
/
platform
/
core
/
api
/
preference.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69706a3
)
change variable type
35/262735/2
author
SukhyungKang
<shine.kang@samsung.com>
Thu, 19 Aug 2021 02:32:56 +0000
(11:32 +0900)
committer
SukhyungKang
<shine.kang@samsung.com>
Thu, 19 Aug 2021 03:33:22 +0000
(12:33 +0900)
Change-Id: Ie6ae933d63a5239cacde9433f343f751b074cc84
Signed-off-by: SukhyungKang <shine.kang@samsung.com>
preference/file-internal.cc
patch
|
blob
|
history
diff --git
a/preference/file-internal.cc
b/preference/file-internal.cc
index 71f627011738cef223ae22f576cf7e0b0a8df795..6b1040da68e7f31867194c182846c82da5baffeb 100644
(file)
--- a/
preference/file-internal.cc
+++ b/
preference/file-internal.cc
@@
-271,7
+271,7
@@
int File::TryWrite() {
}
ssize_t bytes_written;
- s
s
ize_t size = raw_data_.size();
+ size_t size = raw_data_.size();
uint8_t* buffer = static_cast<uint8_t*>(&raw_data_[0]);
bytes_written = write(fd_, buffer, size);