diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2013-11-22 17:06:56 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2013-11-27 11:41:44 +0100 |
commit | f9fc12b9f64a0dfd7b2fe73c3ab9ea6a8722931a (patch) | |
tree | 2c33b7847b618c14e2b4c265b7f02a79ad46243a | |
parent | b457c07d004385f002903ab19ea6ff965d130730 (diff) | |
download | gnutls-f9fc12b9f64a0dfd7b2fe73c3ab9ea6a8722931a.tar.gz |
fixed bug
-rw-r--r-- | lib/gnutls_errors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_errors.h b/lib/gnutls_errors.h index e96e7c9b87..dbc1dfd82f 100644 --- a/lib/gnutls_errors.h +++ b/lib/gnutls_errors.h @@ -97,7 +97,7 @@ static inline #endif int gnutls_assert_val_int(int val, const char *file, int line) { - gnutls_assert(); + _gnutls_assert_log("ASSERT: %s:%d\n", file, line); return val; } |