Update error message for missing .debug_frame

This commit is contained in:
Derek Parker 2015-01-23 14:59:42 -06:00
parent d7e535f25b
commit ff789d1df6

@ -117,7 +117,7 @@ func (dbp *DebuggedProcess) parseDebugFrame(exe *elf.File, wg *sync.WaitGroup) {
} }
dbp.FrameEntries = frame.Parse(debugFrame) dbp.FrameEntries = frame.Parse(debugFrame)
} else { } else {
fmt.Println("No debug symbols found") fmt.Println("could not find .debug_frame section in binary")
os.Exit(1) os.Exit(1)
} }
} }