fix: compile warn

This commit is contained in:
Xiaoyu Wang 2022-12-08 17:37:35 +08:00
parent 23a3a69ddd
commit a202b29853
1 changed files with 5 additions and 4 deletions

View File

@ -394,8 +394,8 @@ char *taosDirEntryBaseName(char *name) {
char *pPoint = strrchr(name, '/');
if (pPoint != NULL) {
if (*(pPoint + 1) == '\0') {
*pPoint = '\0';
return taosDirEntryBaseName(name);
*pPoint = '\0';
return taosDirEntryBaseName(name);
}
return pPoint + 1;
}
@ -500,8 +500,9 @@ int32_t taosCloseDir(TdDirPtr *ppDir) {
void taosGetCwd(char *buf, int32_t len) {
#if !defined(WINDOWS)
(void)getcwd(buf, len - 1);
char *unused __attribute__((unused));
unused = getcwd(buf, len - 1);
#else
strncpy(buf, "not implemented on windows", len -1);
strncpy(buf, "not implemented on windows", len - 1);
#endif
}