[PATCH(es)] round up of warning fixes

2002-04-03 Thread Jonathan Stowe
Parrot_Encoding struct parrot_encoding_t * /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent |

[PATCH] Makefile.in 'make clean' should preserve backups

2002-03-18 Thread Jonathan Stowe
+433,7 $(RM_F) t/op/*.pasm t/op/*.pbc t/op/*.out realclean: clean + $(RM_F) *~ $(RM_F) $(STICKY_FILES) distclean: /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent |

[PATCH] Warning in packfile.c

2002-03-18 Thread Jonathan Stowe
, segment_size, sizeof(opcode_t)); +debug, segment_size, (long)sizeof(opcode_t)); return 0; } return 1; /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent |

Re: [PATCH] Fix last warnings in encodings stuff

2002-03-18 Thread Jonathan Stowe
On Mon, 18 Mar 2002, Jonathan Stowe wrote: This is a little problematic because in ut8.c and utf16.c we are doing rather unconstly things to variables that we hade previously declared as const, I should qualified this: but it's probably

[Not OK] SCO_SV pigment 3.2 5.0.5 i386

2002-03-18 Thread Jonathan Stowe
at it - this should be considered FYI rather than something that should stop 0.04 ;-} /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent |

Re: [PATCH] Bash some more warnings

2002-02-18 Thread Jonathan Stowe
, is the cast necessary? realloc() returns void*, after all... The cast is necessary with the warning level that we have currently :) /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent |

RE: [Parrot-Newbie] Fooling around with parrot

2002-02-17 Thread Jonathan Stowe
: ~/parrotassemble.pl examples/assembly/euclid.pasm test.pbc ~/parrotpbc2c.pl test.pbc test.c Use of uninitialized value in sprintf at lib/Parrot/OpTrans/CGoto.pm line 97. ~/parrot Don't worry about the warnings ;-} /J\ -- Jonathan Stowe | http://www.gellyfish.com

[REPATCH]Re: [PATCH] Nearly the last of the warnings.

2002-02-06 Thread Jonathan Stowe
On Tue, 5 Feb 2002, Jonathan Stowe wrote: This might spoil someones future plans but doesn't break anything existing AFAICT - apart from those pesky ones left in misc.c the only ones left should be from generated code which I have a plan for which I will share later :) This is the same

[PATCH] Nearly the last of the warnings.

2002-02-05 Thread Jonathan Stowe
*, const char * pat, ...); void Parrot_sprintf(struct Parrot_Interp *, char *targ, char *pat, ...); Have fun /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent |

Re: [PATCH test_main.c config_h.in] Warning in test_main.c

2002-02-01 Thread Jonathan Stowe
On Fri, 1 Feb 2002, Jonathan Stowe wrote: This shuts up the implicit declaration warning in test_main.c : +#include parrot/config.h ... On closer examination that line is probably not needed :) /J\ -- Jonathan Stowe | http://www.gellyfish.com

RE: [PATCH test_main.c config_h.in] Warning in test_main.c

2002-02-01 Thread Jonathan Stowe
On Fri, 1 Feb 2002, Brent Dax wrote: Jonathan Stowe: # This shuts up the implicit declaration warning in test_main.c : # # --- config_h.in~Fri Feb 1 07:39:42 2002 # +++ config_h.in Fri Feb 1 07:40:06 2002 # @@ -51,9 +51,10 @@ # #define INTVAL_FMT ${intvalfmt} # #define

Re: CPP Namespace pollution

2002-01-28 Thread Jonathan Stowe
with a shell on the CVS (and the appropriate permissions :) server to move the files to the new layout ... /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent |

[PATCH Miniperl::Tokenizer] Shut up warning in test

2002-01-02 Thread Jonathan Stowe
'; #-- @@ -25,7 +25,7 @@ sub tokenize { my $self = shift; - $self-{text} = $_[0] if $_[0] and $_[0] ne ''; + $self-{text} = $_[0] || return []; my $tokref = []; my $in_quote = 0; /J\ -- Jonathan Stowe

Re: mem_allocate_aligned

2001-12-11 Thread Jonathan Stowe
On Mon, 10 Dec 2001, Dan Sugalski wrote: We need an allocate zeroed call too. We can get zeroed pages faster in some cases than we can allocate pages and zero them ourselves. Isn't that calloc() ? /J\ -- Jonathan Stowe | http://www.gellyfish.com