diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-03-28 16:37:00 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-03-28 16:37:00 (GMT) |
commit | d5e55f2ad015781bd7bee0e3216e47d6218e0841 (patch) | |
tree | fe23d48509be3b4acb88b980539c271d699523e4 /src/analysis/binary.c | |
parent | 8123d9342f92a2cf6fd999b350252c001f403092 (diff) |
Made the g_rendering_options_new() function simple.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@145 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/binary.c')
-rw-r--r-- | src/analysis/binary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/binary.c b/src/analysis/binary.c index 2b392bd..66cc26d 100644 --- a/src/analysis/binary.c +++ b/src/analysis/binary.c @@ -738,7 +738,7 @@ GOpenidaBinary *g_openida_binary_new_from_file(const char *filename) result->proc = get_arch_processor_from_format(result->format); - result->options = g_rendering_options_new(result->format, result->proc); + result->options = g_rendering_options_new(result->format); g_rendering_options_show_address(result->options, MRD_BLOCK, true); g_rendering_options_show_code(result->options, MRD_BLOCK, true); |