aboutsummaryrefslogtreecommitdiff
path: root/lib/strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strerror.c')
-rw-r--r--lib/strerror.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/strerror.c b/lib/strerror.c
index e18af7286..b07067cec 100644
--- a/lib/strerror.c
+++ b/lib/strerror.c
@@ -600,8 +600,8 @@ const char *Curl_strerror(struct connectdata *conn, int err)
char *buf, *p;
size_t max;
- curlassert(conn);
- curlassert(err >= 0);
+ DEBUGASSERT(conn);
+ DEBUGASSERT(err >= 0);
buf = conn->syserr_buf;
max = sizeof(conn->syserr_buf)-1;
@@ -685,7 +685,7 @@ const char *Curl_idn_strerror (struct connectdata *conn, int err)
char *buf;
size_t max;
- curlassert(conn);
+ DEBUGASSERT(conn);
buf = conn->syserr_buf;
max = sizeof(conn->syserr_buf)-1;