summaryrefslogtreecommitdiff
path: root/src/errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.c')
-rw-r--r--src/errors.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/errors.c b/src/errors.c
index 0c14da7c..1c7e989e 100644
--- a/src/errors.c
+++ b/src/errors.c
@@ -221,9 +221,9 @@ xmlSecErrorsGetMsg(xmlSecSize pos) {
* function.
*/
void
-xmlSecError(const char* file, int line, const char* func,
- const char* errorObject, const char* errorSubject,
- int reason, const char* msg, ...) {
+xmlSecError(const char* file, int line, const char* func,
+ const char* errorObject, const char* errorSubject,
+ int reason, const char* msg, ...) {
if(xmlSecErrorsClbk != NULL) {
xmlChar error_msg[XMLSEC_ERRORS_BUFFER_SIZE] = {'\0',};
@@ -253,6 +253,6 @@ xmlSecError(const char* file, int line, const char* func,
} else {
error_msg[0] = '\0';
}
-
- xmlSecErrorsClbk(file, line, func, errorObject, errorSubject, reason, (char*)error_msg); }
+ xmlSecErrorsClbk(file, line, func, errorObject, errorSubject, reason, (char*)error_msg);
+ }
}