diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-04-02 14:43:47 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-04-02 14:43:47 (GMT) |
commit | f9404bf68a067b06986cd85855c43795ec578dbd (patch) | |
tree | 57f481aced2c69ddf6ac9766f310be86ebe03f6f /src/format/dwarf | |
parent | d69503d7aeceddc52dfee9481e6a0e8ba9c1fc85 (diff) |
Removed lots of uninitialized uses, mostly in NDEBUG mode.
Diffstat (limited to 'src/format/dwarf')
-rw-r--r-- | src/format/dwarf/symbols.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format/dwarf/symbols.c b/src/format/dwarf/symbols.c index da30816..20ec7ea 100644 --- a/src/format/dwarf/symbols.c +++ b/src/format/dwarf/symbols.c @@ -231,7 +231,7 @@ static bool load_object_as_symbol_from_dwarf(GDwarfFormat *format, const dw_die //printf(" --> [valid ?= %d] start @ 0x%08llx\n", status, virt); //printf(" --> [valid ?= %d] len = 0x%08llx\n", status, len); - printf(" --> [valid ?= %d] name = '%s'\n", status, name); + //printf(" --> [valid ?= %d] name = '%s'\n", status, name); return true; |