diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-01-14 15:49:16 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-01-14 15:49:16 (GMT) |
commit | 1aa9ba33144b37ae96859573699a80adde93e509 (patch) | |
tree | 72bca95c51353e0ff38b82c6763b3e1de0a9c393 /src/glibext | |
parent | a156dc15cccb54d662b0085c8e4f27767dd5542f (diff) |
Fixed a bug about pure comments containing code.
Diffstat (limited to 'src/glibext')
-rw-r--r-- | src/glibext/gbinportion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glibext/gbinportion.c b/src/glibext/gbinportion.c index e5dedd6..a28f1a7 100644 --- a/src/glibext/gbinportion.c +++ b/src/glibext/gbinportion.c @@ -869,7 +869,7 @@ static int g_binary_portion_contains_addr(const GBinPortion *portion, const vmpa static BufferLineFlags g_binary_portion_get_flags(const GBinPortion *portion, size_t index, size_t repeat) { - return (repeat == 0 ? BLF_WIDTH_MANAGER : BLF_HAS_CODE); + return (repeat == 0 ? BLF_WIDTH_MANAGER : BLF_NONE); } |