Skip to content

Commit ab01a6e

Browse files
committed
avoid ctd99 style
1 parent 3a9dd5a commit ab01a6e

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

apc_cache.c

+9-3
Original file line numberDiff line numberDiff line change
@@ -670,11 +670,13 @@ PHP_APCU_API void apc_cache_detach(apc_cache_t *cache)
670670

671671
/* {{{ apc_cache_wlocked_real_expunge */
672672
static void apc_cache_wlocked_real_expunge(apc_cache_t* cache) {
673+
size_t i;
674+
673675
/* increment counter */
674676
cache->header->nexpunges++;
675677

676678
/* expunge */
677-
for (size_t i = 0; i < cache->nslots; i++) {
679+
for (i = 0; i < cache->nslots; i++) {
678680
apc_cache_entry_t **entry = &cache->slots[i];
679681
while (*entry) {
680682
apc_cache_wlocked_remove_entry(cache, entry);
@@ -754,8 +756,10 @@ PHP_APCU_API void apc_cache_default_expunge(apc_cache_t* cache, size_t size)
754756
} else {
755757
/* check that expunge is necessary */
756758
if (available < suitable) {
759+
size_t i;
760+
757761
/* look for junk */
758-
for (size_t i = 0; i < cache->nslots; i++) {
762+
for (i = 0; i < cache->nslots; i++) {
759763
apc_cache_entry_t **entry = &cache->slots[i];
760764
while (*entry) {
761765
if (apc_cache_entry_expired(cache, *entry, t)) {
@@ -1090,11 +1094,13 @@ PHP_APCU_API zend_bool apc_cache_info(zval *info, apc_cache_t *cache, zend_bool
10901094
#endif
10911095

10921096
if (!limited) {
1097+
size_t i;
1098+
10931099
/* For each hashtable slot */
10941100
array_init(&list);
10951101
array_init(&slots);
10961102

1097-
for (size_t i = 0; i < cache->nslots; i++) {
1103+
for (i = 0; i < cache->nslots; i++) {
10981104
p = cache->slots[i];
10991105
j = 0;
11001106
for (; p != NULL; p = p->next) {

apc_iterator.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,9 @@ static void apc_iterator_totals(apc_iterator_t *iterator) {
294294
}
295295

296296
php_apc_try {
297-
for (size_t i=0; i < apc_user_cache->nslots; i++) {
297+
size_t i;
298+
299+
for (i=0; i < apc_user_cache->nslots; i++) {
298300
apc_cache_entry_t *entry = apc_user_cache->slots[i];
299301
while (entry) {
300302
if (apc_iterator_check_expiry(apc_user_cache, entry, t)) {

0 commit comments

Comments
 (0)