summaryrefslogtreecommitdiff
path: root/src/glibext/generators
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-10-23 21:16:35 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-10-23 21:16:35 (GMT)
commit4563123b929366e93973a1d6aa3269bd7b3f47d6 (patch)
tree0ffd8d788adb9228c137254f8817c4397a280b16 /src/glibext/generators
parentacbd3ac3899bd1230097df2f1afea6c3690a5cb8 (diff)
Indented code labels in the assembly views.
Diffstat (limited to 'src/glibext/generators')
-rw-r--r--src/glibext/generators/rborder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glibext/generators/rborder.c b/src/glibext/generators/rborder.c
index 62c374d..640fa2d 100644
--- a/src/glibext/generators/rborder.c
+++ b/src/glibext/generators/rborder.c
@@ -364,8 +364,8 @@ static void g_border_generator_print(GBorderGenerator *generator, GBufferLine *l
text = strdup(generator->start ? ROUTINE_INTRO_MSG : ROUTINE_OUTRO_MSG);
g_coding_language_encapsulate_comment(generator->lang, &text);
- g_buffer_line_start_merge_at(line, BLC_ASSEMBLY_HEAD);
- g_buffer_line_append_text(line, BLC_ASSEMBLY_HEAD, SL(text), RTT_COMMENT, NULL);
+ g_buffer_line_start_merge_at(line, BLC_ASSEMBLY_LABEL);
+ g_buffer_line_append_text(line, BLC_ASSEMBLY_LABEL, SL(text), RTT_COMMENT, NULL);
free(text);