Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-05-01 13:50:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-01 14:00:56 +0300
commit177a0ca131794a15d775577e4fa25c1d9e695d13 (patch)
tree34ec644675a418b232d995921aedcfc9f2cd92a2 /intern/clog
parent5bbf9029ce676e69042e0a26075431ce67357c38 (diff)
Cleanup: comments (long lines) in various intern/ libs
Diffstat (limited to 'intern/clog')
-rw-r--r--intern/clog/clog.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/intern/clog/clog.c b/intern/clog/clog.c
index ea6f215e8f0..da94acd97b1 100644
--- a/intern/clog/clog.c
+++ b/intern/clog/clog.c
@@ -356,7 +356,8 @@ static void clg_ctx_fatal_action(CLogContext *ctx)
static void clg_ctx_backtrace(CLogContext *ctx)
{
/* Note: we avoid writing fo 'FILE', for backtrace we make an exception,
- * if necessary we could have a version of the callback that writes to file descriptor all at once. */
+ * if necessary we could have a version of the callback that writes to file
+ * descriptor all at once. */
ctx->callbacks.backtrace_fn(ctx->output_file);
fflush(ctx->output_file);
}