diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-11-02 16:35:57 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-11-02 16:35:57 (GMT) |
commit | a3e238eb03fc52845e7a8930feb384a0ad33233e (patch) | |
tree | 35a0328fa4f90c6dd1b8dba0e42c4efb7bcf9bde | |
parent | 6169203f33bb5b6f73371b6837ad9d6efd94d854 (diff) |
Typo.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@187 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/analysis/binary.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,11 @@ 10-11-02 Cyrille Bagard <nocbos@gmail.com> * src/analysis/binary.c: + Typo. + +10-11-02 Cyrille Bagard <nocbos@gmail.com> + + * src/analysis/binary.c: * src/analysis/binary.h: Give a direct access to disassembled instructions. diff --git a/src/analysis/binary.c b/src/analysis/binary.c index e004d4f..732d0aa 100644 --- a/src/analysis/binary.c +++ b/src/analysis/binary.c @@ -1332,7 +1332,7 @@ GArchInstruction *g_openida_binary_get_instructions(const GOpenidaBinary *binary iter != NULL; iter = g_rendering_line_get_next_iter(binary->lines, iter, NULL)) { - if (!G_IS_CODE_LINE(iter)) break; + if (G_IS_CODE_LINE(iter)) break; } if (iter != NULL) |