1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 20:35:33 +03:00

Fixed some comparion sign warnings in MAX macros

This commit is contained in:
Martin Budden 2017-08-16 08:55:12 +01:00
parent 53920103d8
commit c0961d7f4c
5 changed files with 6 additions and 6 deletions

View file

@ -261,7 +261,7 @@ static void cmsPadToSize(char *buf, int size)
static int cmsDrawMenuEntry(displayPort_t *pDisplay, OSD_Entry *p, uint8_t row)
{
#define CMS_DRAW_BUFFER_LEN 10
#define CMS_DRAW_BUFFER_LEN 10u
char buff[CMS_DRAW_BUFFER_LEN];
int cnt = 0;