diff --git a/source/os/src/osSysinfo.c b/source/os/src/osSysinfo.c index 30415f2a56..b915e2964f 100644 --- a/source/os/src/osSysinfo.c +++ b/source/os/src/osSysinfo.c @@ -18,7 +18,7 @@ #include "taoserror.h" #define PROCESS_ITEM 12 -#define uuidLen37 37 +#define UUIDLEN37 37 typedef struct { uint64_t user; @@ -835,8 +835,8 @@ int32_t taosGetSystemUUID(char *uid, int32_t uidlen) { return 0; #elif defined(_TD_DARWIN_64) uuid_t uuid = {0}; - char buf[uuidLen37]; - memset(buf, 0, uuidLen37); + char buf[UUIDLEN37]; + memset(buf, 0, UUIDLEN37); uuid_generate(uuid); // it's caller's responsibility to make enough space for `uid`, that's 36-char + 1-null uuid_unparse_lower(uuid, buf);