diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-07-08 11:39:43 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-07-08 11:39:43 (GMT) |
commit | 412f9fd31e625dbb2b00c25b6cc6b4753acd409d (patch) | |
tree | 04734e5ae66a2b470be8e3987eb797487f2d1e70 /src/analysis/decomp | |
parent | 5dcd05f19ac62f6ff922176cd0ae6f8839910f2e (diff) |
Fixed the display of code source.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@248 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/decomp')
-rw-r--r-- | src/analysis/decomp/decompiler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/decomp/decompiler.c b/src/analysis/decomp/decompiler.c index de1b6d2..b144846 100644 --- a/src/analysis/decomp/decompiler.c +++ b/src/analysis/decomp/decompiler.c @@ -74,11 +74,11 @@ static void build_decomp_prologue(GCodeBuffer *buffer, const char *filename) /* Introduction */ line = g_lang_output_continue_comments(output, buffer, - SL(_("Binary data decompiled by OpenIDA"))); + SL(_("Binary data decompiled by Chrysalide"))); g_buffer_line_start_merge_at(line, BLC_ADDRESS); line = g_lang_output_continue_comments(output, buffer, - SL(_("OpenIDA is free software - © 2008-2010 Cyrille Bagard"))); + SL(_("Chrysalide is free software - © 2008-2012 Cyrille Bagard"))); g_buffer_line_start_merge_at(line, BLC_ADDRESS); line = g_lang_output_continue_comments(output, buffer, NULL, 0); |