Branch: Tag:

2004-01-22

2004-01-22 23:17:28 by Martin Nilsson <mani@lysator.liu.se>

Fixed errors

Rev: src/docode.c:1.174
Rev: src/modules/Image/colors.c:1.71
Rev: src/modules/Image/colortable.c:1.118
Rev: src/modules/Image/encodings/psd.c:1.40
Rev: src/modules/Image/encodings/x.c:1.43
Rev: src/modules/Image/encodings/xcf.c:1.47
Rev: src/modules/Image/operator.c:1.45
Rev: src/modules/Java/jvm.c:1.66
Rev: src/modules/Math/transforms.cmod:1.11
Rev: src/modules/Perl/perlmod.c:1.34
Rev: src/modules/Ssleay/ssleay.c:1.21
Rev: src/modules/_Image_GIF/image_gif.c:1.20
Rev: src/modules/files/file.c:1.311
Rev: src/modules/files/termios.c:1.22
Rev: src/pike_types.h:1.93
Rev: src/program.c:1.554

2:   || This file is part of Pike. For copyright information see COPYRIGHT.   || Pike is distributed under GPL, LGPL and MPL. See the file COPYING   || for more information. - || $Id: pike_types.h,v 1.92 2003/11/14 11:15:14 mast Exp $ + || $Id: pike_types.h,v 1.93 2004/01/22 23:17:27 nilsson Exp $   */      #ifndef PIKE_TYPES_H
136:      #define type_stack_mark() do { \    if(Pike_compiler->pike_type_mark_stackp >= pike_type_mark_stack + NELEM(pike_type_mark_stack)) \ -  Pike_fatal("Type mark stack overflow."); \ +  Pike_fatal("Type mark stack overflow.\n"); \    else { \    *Pike_compiler->pike_type_mark_stackp=Pike_compiler->type_stackp; \    Pike_compiler->pike_type_mark_stackp++; \
265:    unsafe_type_stack_mark(); \   } while (0)   #define DTYPE_END(TYPESTR) do { \ -  if(Pike_compiler->type_stackp >= type_stack + sizeof(type_stack)) \ -  Pike_fatal("Type stack overflow."); \ +  if(Pike_compiler->type_stackp >= type_stack + sizeof(type_stack)) \ +  Pike_fatal("Type stack overflow.\n"); \    type_stack_reverse(); \    (TYPESTR)=pop_unfinished_type(); \   } while (0)