switch from 0x00 to 0xff to make the compilers work

This commit is contained in:
gilteixeira 2023-02-27 17:08:51 +00:00
parent bb921cd3bd
commit 948780526b
1 changed files with 2 additions and 1 deletions

View File

@ -75,10 +75,11 @@ static int mk_evcsnm(uint8_t *evcsnm_oer, uint32_t *evcsnm_len)
cs_elem0->type.buf = calloc(1, sizeof(uint8_t));
cs_elem0->type.size = 1;
cs_elem0->type.bits_unused = 0;
cs_elem0->type.buf[0] = 0;
cs_elem0->type.buf[0] = 0xff;
cs_elem0->typeOfReceptacle.buf = calloc(1, sizeof(uint8_t));
cs_elem0->typeOfReceptacle.size = 1;
cs_elem0->typeOfReceptacle.bits_unused = 0;
cs_elem0->typeOfReceptacle.buf[0] = 0xff;
itss_space_unlock(epv);
// if (facilities.station_type == StationType_roadSideUnit)
//{