Skip to content

Commit

Permalink
Add cast for var using PIC Macro
Browse files Browse the repository at this point in the history
  • Loading branch information
clementperon committed Dec 19, 2018
1 parent 400bece commit 7c25f26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1784,8 +1784,8 @@ void finalizeParsing(bool direct) {
uint32_t i;
uint8_t address[41];
uint8_t decimals = WEI_TO_ETHER;
uint8_t *ticker = PIC(chainConfig->coinName);
uint8_t *feeTicker = PIC(chainConfig->coinName);
uint8_t *ticker = (uint8_t *)PIC(chainConfig->coinName);
uint8_t *feeTicker = (uint8_t *)PIC(chainConfig->coinName);
uint8_t tickerOffset = 0;

// Verify the chain
Expand Down

0 comments on commit 7c25f26

Please sign in to comment.