Add file and line number to RET_ERR{,_VOID}
Following the example of the recently added GOTO_ERR, adding the file and line number in addition to the function name in our debug messages is potentially useful. Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
80ae80149a
commit
ddd5b0a462
1 changed files with 2 additions and 2 deletions
|
@ -62,12 +62,12 @@ void _alpm_alloc_fail(size_t size);
|
|||
#define ASSERT(cond, action) do { if(!(cond)) { action; } } while(0)
|
||||
|
||||
#define RET_ERR_VOID(handle, err) do { \
|
||||
_alpm_log(handle, ALPM_LOG_DEBUG, "returning error %d from %s : %s\n", err, __func__, alpm_strerror(err)); \
|
||||
_alpm_log(handle, ALPM_LOG_DEBUG, "returning error %d from %s (%s: %d) : %s\n", err, __func__, __FILE__, __LINE__, alpm_strerror(err)); \
|
||||
(handle)->pm_errno = (err); \
|
||||
return; } while(0)
|
||||
|
||||
#define RET_ERR(handle, err, ret) do { \
|
||||
_alpm_log(handle, ALPM_LOG_DEBUG, "returning error %d from %s : %s\n", err, __func__, alpm_strerror(err)); \
|
||||
_alpm_log(handle, ALPM_LOG_DEBUG, "returning error %d from %s (%s: %d) : %s\n", err, __func__, __FILE__, __LINE__, alpm_strerror(err)); \
|
||||
(handle)->pm_errno = (err); \
|
||||
return (ret); } while(0)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue