Skip to content

Commit daa33a0

Browse files
removing trailing spaces
1 parent 88d05c6 commit daa33a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/Arduino_DebugUtils.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,10 @@ void Arduino_DebugUtils::print(Arduino_DebugUtils::Level const debug_level, cons
130130
******************************************************************************/
131131

132132
void Arduino_DebugUtils::vPrint(char const * fmt, va_list args) {
133-
133+
134134
va_list args_copy;
135135
va_copy(args_copy, args);
136-
136+
137137
// calculate required buffer length
138138
int msg_buf_size = vsnprintf(nullptr, 0, fmt, args) + 1; // add one for null terminator
139139
#if __STDC_NO_VLA__ == 1

0 commit comments

Comments
 (0)