Skip to content

Commit 50cb9be

Browse files
authored
Merge pull request #186 from microsoft/dev/snehara/policheck-fix
Replaced the term "crazy"
2 parents 36e888d + c7847bd commit 50cb9be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/cmcurl/lib/curlx/dynbuf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void curlx_dyn_init(struct dynbuf *s, size_t toobig)
4343
{
4444
DEBUGASSERT(s);
4545
DEBUGASSERT(toobig);
46-
DEBUGASSERT(toobig <= MAX_DYNBUF_SIZE); /* catch crazy mistakes */
46+
DEBUGASSERT(toobig <= MAX_DYNBUF_SIZE); /* catch unexpected mistakes */
4747
s->bufr = NULL;
4848
s->leng = 0;
4949
s->allc = 0;

0 commit comments

Comments
 (0)