pike.git/
src/
stralloc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2004-11-06
2004-11-06 15:28:49 by Henrik Grubbström (Grubba) <grubba@grubba.org>
24d0c1add423d5ec622c0e30cc302076018f3654 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Bugfix.
Rev: src/stralloc.c:1.177
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: stralloc.c,v 1.
176
2004/11/06 15:
13
:
50
grubba Exp $
+
|| $Id: stralloc.c,v 1.
177
2004/11/06 15:
28
:
49
grubba Exp $
*/ #include "global.h"
2340:
case '4': case '5': case '6': case '7': case '8': case '9': if (state = STATE_PRECISION) {
-
precision
*
= 10 + fmt[-1] - '0';
+
precision =
precision *
10 + fmt[-1] - '0';
} else { state = STATE_MIN_WIDTH;
-
min_width
*
= 10 + fmt[-1] - '0';
+
min_width =
min_width *
10 + fmt[-1] - '0';
} break; case '.':