when evaluating conditionals, array iteration number stays the same
CVS patchset: 1861 CVS date: 1997/10/17 03:12:03
This commit is contained in:
parent
73306a9493
commit
e548c70dde
|
@ -168,12 +168,12 @@ depend:
|
|||
(cd $$d; $(MAKE) $@) ;\
|
||||
done
|
||||
|
||||
.PHONY noconfig
|
||||
.PHONY: noconfig
|
||||
noconfig:
|
||||
find . -name "Makefile" -exec rm {} \;
|
||||
rm -f *gz *rpm config.*
|
||||
|
||||
.PHONY archive
|
||||
.PHONY: archive
|
||||
archive:
|
||||
@echo " "
|
||||
@echo "I hope you checked everything out and made sure it builds"
|
||||
|
|
|
@ -1649,7 +1649,7 @@ static char * singleSprintf(Header h, struct sprintfToken * token,
|
|||
|
||||
for (i = 0; i < condNumFormats; i++) {
|
||||
thisItem = singleSprintf(h, condFormat + i,
|
||||
extensions, extCache, i);
|
||||
extensions, extCache, element);
|
||||
thisItemLen = strlen(thisItem);
|
||||
if ((thisItemLen + len) >= alloced) {
|
||||
alloced = (thisItemLen + len) + 200;
|
||||
|
|
Loading…
Reference in New Issue