Merge pull request #18819 from taosdata/enh/insertOptimize_wxy
fix: compile warn
This commit is contained in:
commit
d146769b19
|
@ -500,7 +500,8 @@ int32_t taosCloseDir(TdDirPtr *ppDir) {
|
||||||
|
|
||||||
void taosGetCwd(char *buf, int32_t len) {
|
void taosGetCwd(char *buf, int32_t len) {
|
||||||
#if !defined(WINDOWS)
|
#if !defined(WINDOWS)
|
||||||
(void)getcwd(buf, len - 1);
|
char *unused __attribute__((unused));
|
||||||
|
unused = getcwd(buf, len - 1);
|
||||||
#else
|
#else
|
||||||
strncpy(buf, "not implemented on windows", len - 1);
|
strncpy(buf, "not implemented on windows", len - 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue