Missing semi-colon
Brendan O'Dea [Sun, 15 Feb 2004 23:27:17 +0000 (10:27 +1100)]
From: "Brendan O'Dea" <bod@debian.org>
Message-ID: <20040215122717.GA26812@londo.c47.org>

p4raw-id: //depot/perl@22309

ext/MIME/Base64/Base64.xs

index 0e1817e..14c8bea 100644 (file)
@@ -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);