more info for debugging

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@778 59561ff5-6e30-0410-9f3c-9617f08c8826
This commit is contained in:
vlm 2005-03-10 09:36:03 +00:00
parent c0ef9c05d1
commit 309d534f90
1 changed files with 4 additions and 1 deletions

View File

@ -104,7 +104,10 @@ typedef struct arg_s {
int _save_errno = errno; \
if(code < 0) { \
if(arg->debug) \
arg->debug(code, fmt, ##args); \
arg->debug(code, fmt " in %s (%s@%d)", \
##args, \
arg->mod->source_file_name, \
__FILE__, __LINE__); \
} else if(arg->eh) { \
arg->eh(code, fmt " in %s", ##args, \
arg->mod->source_file_name); \