summaryrefslogtreecommitdiff
path: root/src/decomp/lang/asm.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-03-25 12:36:16 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-03-25 12:36:16 (GMT)
commita174ee784f5d9e554ed09181b8e6d8c0205f8ef5 (patch)
treef5ccfb4c41fcb1f237bc285e8e71bc188b7c8b57 /src/decomp/lang/asm.c
parentbbad297e902022ecac9fab21c01dc109560db8eb (diff)
Scrolled to the selected symbol.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@241 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/decomp/lang/asm.c')
-rw-r--r--src/decomp/lang/asm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decomp/lang/asm.c b/src/decomp/lang/asm.c
index 276d323..9ee8729 100644
--- a/src/decomp/lang/asm.c
+++ b/src/decomp/lang/asm.c
@@ -2,7 +2,7 @@
/* OpenIDA - Outil d'analyse de fichiers binaires
* asm.c - sorties en langage d'assemblage
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2012 Cyrille Bagard
*
* This file is part of OpenIDA.
*
@@ -157,7 +157,7 @@ static GBufferLine *g_asm_output_write_comments(GAsmOutput *output, GCodeBuffer
{
GBufferLine *result; /* Adresse nouvelle à remonter */
- result = g_code_buffer_append_new_line(buffer);
+ result = g_code_buffer_append_new_line_fixme(buffer);
g_buffer_line_insert_text(result, BLC_COMMENTS, "; ", 2, RTT_COMMENT);
@@ -235,7 +235,7 @@ static GBufferLine *g_asm_output_start_routine_prototype(GAsmOutput *output, GCo
{
GBufferLine *result; /* Adresse nouvelle à remonter */
- result = g_code_buffer_append_new_line(buffer);
+ result = g_code_buffer_append_new_line_fixme(buffer);
/* TODO */
g_buffer_line_insert_text(result, BLC_ASSEMBLY_HEAD, "XXX", 3, RTT_RAW);