diff options
author | Matthias Bolte <matthias.bolte@googlemail.com> | 2011-04-16 10:30:22 +0200 |
---|---|---|
committer | Matthias Bolte <matthias.bolte@googlemail.com> | 2011-04-17 07:22:23 +0200 |
commit | 60d769a13ac0388472e531919f6de4d77c35a5d3 (patch) | |
tree | 7d75197ac2350ada6154389be4fb74658f3842ad /src/security | |
parent | tests: Unit tests for internal hash APIs (diff) | |
download | libvirt-60d769a13ac0388472e531919f6de4d77c35a5d3.tar.gz libvirt-60d769a13ac0388472e531919f6de4d77c35a5d3.tar.bz2 libvirt-60d769a13ac0388472e531919f6de4d77c35a5d3.zip |
Remove virConnectPtr from virRaiseErrorFull
And from all related macros and functions.
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/security_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/security_manager.h b/src/security/security_manager.h index 3f8880187..8d7c220b0 100644 --- a/src/security/security_manager.h +++ b/src/security/security_manager.h @@ -24,7 +24,7 @@ # define VIR_SECURITY_MANAGER_H__ # define virSecurityReportError(code, ...) \ - virReportErrorHelper(NULL, VIR_FROM_SECURITY, code, __FILE__, \ + virReportErrorHelper(VIR_FROM_SECURITY, code, __FILE__, \ __FUNCTION__, __LINE__, __VA_ARGS__) |