# New Ticket Created by  Simon Glover 
# Please include the string:  [netlabs #645]
# in the subject line of all future correspondence about this issue. 
# <URL: http://bugs6.perl.org/rt2/Ticket/Display.html?id=645 >



 This patch fixes a few "No previous prototype..." warnings in
 packfile.h, and corrects an obvious bug in the packfile.c
 documentation.

 Simon


--- include/parrot/packfile.h.old       Fri May 31 18:05:15 2002
+++ include/parrot/packfile.h   Fri May 31 18:08:12 2002
@@ -162,6 +162,15 @@

 opcode_t PackFile_fetch_op(struct PackFile *pf, opcode_t *stream);

+INTVAL
+PackFile_fetch_iv(struct PackFile *pf, opcode_t *stream);
+
+FLOATVAL
+PackFile_fetch_nv(struct PackFile *pf, opcode_t *stream);
+
+void
+PackFile_assign_transforms(struct PackFile *pf);
+
 /*
 ** Byte Ordering Functions (byteorder.c)
 */


--- packfile.c.old      Fri May 31 18:03:55 2002
+++ packfile.c  Fri May 31 18:04:11 2002
@@ -131,9 +131,9 @@

 /***************************************

-=item fetch_iv
+=item fetch_nv

-Fetch an INTVAL from the stream, converting
+Fetch a FLOATVAL from the stream, converting
 byteorder if needed.

 =cut



Reply via email to