Skip to content

Commit fdb8401

Browse files
committed
format
1 parent 194b8e0 commit fdb8401

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/src/__support/wchar/string_converter.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ template <typename T> class StringConverter {
7878
}
7979

8080
ErrorOr<CharType> out = cr.pop<CharType>();
81-
if (out.has_value() && out.value() == 0) // if out isn't null terminator or an error
81+
// if out isn't null terminator or an error
82+
if (out.has_value() && out.value() == 0)
8283
src_len = src_idx;
8384

8485
num_to_write--;

0 commit comments

Comments
 (0)