couple of pedantic fixes: "static" should be first

This commit is contained in:
Antony Dovgal 2006-01-18 23:55:27 +00:00
parent 4f07cff61c
commit c83190514f
2 changed files with 3 additions and 3 deletions

View File

@ -47,9 +47,9 @@
typedef unsigned char _cyr_charset_table[512];
/* {{{ const static _cyr_charset_table _cyr_win1251
/* {{{ static const _cyr_charset_table _cyr_win1251
*/
const static _cyr_charset_table _cyr_win1251 = {
static const _cyr_charset_table _cyr_win1251 = {
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,
32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,

View File

@ -716,7 +716,7 @@ static php_conv_err_t php_conv_base64_decode_convert(php_conv_base64_decode *ins
size_t icnt, ocnt;
unsigned int ustat;
const static unsigned int nbitsof_pack = 8;
static const unsigned int nbitsof_pack = 8;
if (in_pp == NULL || in_left_p == NULL) {
if (inst->eos || inst->urem_nbits == 0) {