From: Jérémie Galarneau Date: Mon, 2 May 2016 19:26:08 +0000 (-0400) Subject: Clean-up: fix comment style in bin-info.c X-Git-Tag: v1.4.0-rc1~23 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=5f07b6ce3098d87af3d413a67dacb5e85b2bcafe Clean-up: fix comment style in bin-info.c Signed-off-by: Jérémie Galarneau --- diff --git a/lib/bin-info.c b/lib/bin-info.c index 14b0dea3..3bd08076 100644 --- a/lib/bin-info.c +++ b/lib/bin-info.c @@ -266,8 +266,7 @@ int bin_info_set_dwarf_info_build_id(struct bin_info *bin) dbg_dir = opt_debug_info_dir ? : DEFAULT_DEBUG_DIR; - /* 2 characters per byte printed in hex, +1 for '/' and +1 for - * '\0' */ + /* 2 characters per byte printed in hex, +1 for '/' and +1 for '\0' */ build_id_file_len = (2 * bin->build_id_len) + 1 + strlen(BUILD_ID_SUFFIX) + 1; build_id_file = malloc(build_id_file_len);