fixed missing type

This commit is contained in:
gilteixeira 2023-03-11 13:55:08 +00:00
parent d98d059def
commit b5f772324e
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ static int mk_evcsnm(uint8_t *evcsnm_oer, uint32_t *evcsnm_len)
cs0->accessibility = *create_empty_utf8_string();
cs0->pricing = *create_empty_utf8_string();
cs0->openingDaysHours = *create_empty_utf8_string();
const booking_url = "ccam.av.it.pt";
const char* booking_url = "ccam.av.it.pt";
cs0->bookingContactInfo = create_utf8_from_string(booking_url, strlen(booking_url));
cs0->chargingSpotsAvailable.list.array = calloc(1, sizeof(void *));
cs0->chargingSpotsAvailable.list.count = 1;