Skip to content

Commit

Permalink
reinstate comment format
Browse files Browse the repository at this point in the history
Co-authored-by: Romaric Jodin <rjodin@chromium.org>
  • Loading branch information
Rekt3421 and rjodinchr authored Aug 29, 2024
1 parent c7d90c4 commit 1cd3365
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/printf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,10 @@ void process_printf(char*& data, const printf_descriptor_map_t& descs,
} else {
// Vector argument
if (el_size == 0) {
// 'ele_size == 0' means that no length modifier has been
// used. According to the spec, this is an undefined
// behavior. Let's use the size coming from clspv and the
// vec_len to figure out the element size then.
// 'ele_size == 0' means that no length modifier has been used.
// According to the spec, this is an undefined behavior. Let's
// use the size coming from clspv and the vec_len to figure out
// the element size then.
el_size = size / vec_len;
}
auto* data_start = data;
Expand Down

0 comments on commit 1cd3365

Please sign in to comment.