cvs commit: ponie/src/pmc perl5cargo_cult.pmc

[email protected] (Nicholas Clark) 21 Jun 2004 20:43:36 -0000
Newsgroups perl.ponie.changes
Message-ID <[email protected]>
cvsuser     04/06/21 13:43:36

  Modified:    src/pmc  perl5cargo_cult.pmc
  Log:
  Ooops. This was meant to be in. The PMC class should be allocating an sv
  head structure.
  
  Revision  Changes    Path
  1.7       +2 -2      ponie/src/pmc/perl5cargo_cult.pmc
  
  Index: perl5cargo_cult.pmc
  ===================================================================
  RCS file: /cvs/public/ponie/src/pmc/perl5cargo_cult.pmc,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -w -r1.6 -r1.7
  --- perl5cargo_cult.pmc	7 May 2004 23:29:29 -0000	1.6
  +++ perl5cargo_cult.pmc	21 Jun 2004 20:43:36 -0000	1.7
  @@ -1,7 +1,7 @@
   /* Perl5QQQ.pmc -*- c -*-
    *  Copyright: 2001-2004 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *     $Id: perl5cargo_cult.pmc,v 1.6 2004/05/07 23:29:29 nicholas Exp $
  + *     $Id: perl5cargo_cult.pmc,v 1.7 2004/06/21 20:43:36 nicholas Exp $
    *  Overview:
    *     These are the vtable functions for the Perl5QQQ base class
    *  Data Structure and Algorithms:
  @@ -37,7 +37,7 @@
   
       void init () {	
           PObj_active_destroy_SET(SELF);
  -	PMC_struct_val(SELF) = malloc(sizeof(struct xqqq));
  +	PMC_struct_val(SELF) = malloc(sizeof(struct STRUCT_SV));
       }