pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
2003-03-30
2003-03-30 00:31:06 by Martin Stjernholm <mast@lysator.liu.se>
a5d6a72cbfec60607e5337c7880bf453443d494a (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed a warning.
Rev: src/program.c:1.493
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: program.c,v 1.
492
2003/03/
29
22
:
42
:
48
mast Exp $
+
|| $Id: program.c,v 1.
493
2003/03/
30
00
:
31
:
06
mast Exp $
*/ #include "global.h"
-
RCSID("$Id: program.c,v 1.
492
2003/03/
29
22
:
42
:
48
mast Exp $");
+
RCSID("$Id: program.c,v 1.
493
2003/03/
30
00
:
31
:
06
mast Exp $");
#include "program.h" #include "object.h" #include "dynamic_buffer.h"
5160:
int chr; size_t ptr=0;
-
for (; chr = EXTRACT_PCHARP(from); INC_PCHARP(from, 1))
+
for (;
(
chr = EXTRACT_PCHARP(from)
)
; INC_PCHARP(from, 1))
{ size_t space = chr > 255 ? 20 : 1;