Skip to content

Commit

Permalink
fix: warnings raised since gcc update
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Pillon <[email protected]>
  • Loading branch information
fpistm committed Sep 12, 2024
1 parent 2347acd commit 8fca21e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/i_nucleo_lrwan1_wm_sg_sm_xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ static ATEerror_t at_cmd_receive_async_event_downlink_data(void *pdata)
int8_t i = 0;
int8_t charnumber = 0;
char *ptrChr;
ATEerror_t RetCode;
ATEerror_t RetCode = AT_OK;
/* Discriminate the Get return code from return value */
uint8_t NoReturnCode =1;
int8_t DlinkData_Complete = (0x1U);
Expand Down
1 change: 1 addition & 0 deletions src/tiny_vsnprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ int tiny_vsnprintf_like(char *buf, const int size, const char *fmt, va_list args

case 'X':
flags |= UPPERCASE;
__attribute__ ((fallthrough));

case 'x':
base = 16;
Expand Down

0 comments on commit 8fca21e

Please sign in to comment.