Change executable for stack trace to thumbdv instead of freedv

This commit is contained in:
Ed Gonzalez 2015-06-03 10:29:02 -05:00
parent ef467c41aa
commit 6ca3c9cd3a

View file

@ -100,7 +100,7 @@ void segfault_sigaction(int signal, siginfo_t *si, void *arg)
// Get's line number of fault
char syscom[256];
sprintf(syscom,"eu-addr2line -e %s %p","./freedv" , array[i]);
sprintf(syscom,"eu-addr2line -e %s %p","./thumbdv" , array[i]);
system(syscom);
}