From 4226ee0b71fec6f08897dacf3d6632526618acca Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 15 Jan 2019 23:15:58 +1100 Subject: Cleanup: comment line length (blenlib) Prevents clang-format wrapping text before comments. --- source/blender/blenlib/intern/timecode.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/intern/timecode.c') diff --git a/source/blender/blenlib/intern/timecode.c b/source/blender/blenlib/intern/timecode.c index ab7766d2cd6..5f710ad10e4 100644 --- a/source/blender/blenlib/intern/timecode.c +++ b/source/blender/blenlib/intern/timecode.c @@ -135,7 +135,8 @@ size_t BLI_timecode_string_from_time( } case USER_TIMECODE_SMPTE_MSF: { - /* reduced SMPTE format that always shows minutes, seconds, frames. Hours only shown as needed. */ + /* reduced SMPTE format that always shows minutes, seconds, frames. + * Hours only shown as needed. */ if (hours) { rlen = BLI_snprintf_rlen(str, maxncpy, "%s%02d:%02d:%02d:%02d", neg, hours, minutes, seconds, frames); } @@ -165,7 +166,8 @@ size_t BLI_timecode_string_from_time( } case USER_TIMECODE_SUBRIP: { - /* SubRip, like SMPTE milliseconds but seconds and milliseconds are separated by a comma, not a dot... */ + /* SubRip, like SMPTE milliseconds but seconds and milliseconds + * are separated by a comma, not a dot... */ /* precision of decimal part */ const int ms_dp = (power <= 0) ? (1 - power) : 1; -- cgit v1.2.3