summaryrefslogtreecommitdiff
path: root/ext/MIME
diff options
context:
space:
mode:
authorBrendan O'Dea <bod@debian.org>2004-02-16 10:27:17 +1100
committerH.Merijn Brand <h.m.brand@xs4all.nl>2004-02-16 11:27:34 +0000
commit1b96abaf83c640ae3fca4becfa82d376954d73cc (patch)
treeaba9d6ad497bd2b7426555f9b4c3774a764a5346 /ext/MIME
parent791eb7720cfe2abd50c979494739e87e19081c33 (diff)
downloadperl-1b96abaf83c640ae3fca4becfa82d376954d73cc.tar.gz
Missing semi-colon
From: "Brendan O'Dea" <bod@debian.org> Message-ID: <20040215122717.GA26812@londo.c47.org> p4raw-id: //depot/perl@22309
Diffstat (limited to 'ext/MIME')
-rw-r--r--ext/MIME/Base64/Base64.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/MIME/Base64/Base64.xs b/ext/MIME/Base64/Base64.xs
index 0e1817ea20..14c8bead83 100644
--- a/ext/MIME/Base64/Base64.xs
+++ b/ext/MIME/Base64/Base64.xs
@@ -341,7 +341,7 @@ encode_qp(sv,...)
}
else {
/* output escaped char (with line breaks) */
- assert(p < end)
+ assert(p < end);
if (eol_len && linelen > MAX_LINE - 4) {
sv_catpvn(RETVAL, "=", 1);
sv_catpvn(RETVAL, eol, eol_len);