Skip to content

Commit 7a71455

Browse files
committed
format
1 parent f4a754b commit 7a71455

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flang-rt/unittests/Runtime/Descriptor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ static std::string getAddrFilteredContent(FILE *fin) {
166166
char buffer[1024];
167167
size_t bytes_read;
168168
while ((bytes_read = fread(buffer, 1, sizeof(buffer), fin)) > 0) {
169-
content.write(buffer, bytes_read);
169+
content.write(buffer, bytes_read);
170170
}
171171
return std::regex_replace(
172172
content.str(), std::regex("(0x[0-9a-fA-F]*)"), "[address]");
@@ -181,7 +181,7 @@ TEST(Descriptor, Dump) {
181181
TypeCode integer{TypeCategory::Integer, four};
182182
// Scalar
183183
descriptor.Establish(integer, four, data, 0);
184-
FILE* tmpf = tmpfile();
184+
FILE *tmpf = tmpfile();
185185
ASSERT_TRUE(tmpf) << "tmpfile returned NULL";
186186
auto resetTmpFile = [tmpf]() {
187187
rewind(tmpf);

0 commit comments

Comments
 (0)