simon       01/09/14 03:54:24

  Modified:    .        interpreter.c
  Log:
  Remove lvalue cast.
  
  Revision  Changes    Path
  1.9       +1 -1      parrot/interpreter.c
  
  Index: interpreter.c
  ===================================================================
  RCS file: /home/perlcvs/parrot/interpreter.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -w -r1.8 -r1.9
  --- interpreter.c     2001/09/14 09:57:03     1.8
  +++ interpreter.c     2001/09/14 10:54:23     1.9
  @@ -96,7 +96,7 @@
   
       BUILD_TABLE(foo);
   
  -    (void *)interpreter->opcode_funcs = foo;
  +    interpreter->opcode_funcs = (void*)foo;
     }
   
     /* In case the I/O system needs something */
  
  
  

Reply via email to