fix: compile errors
This commit is contained in:
parent
4c48d05bd3
commit
acd87db992
|
@ -28,9 +28,9 @@ extern "C" {
|
||||||
#define setlocale SETLOCALE_FUNC_TAOS_FORBID
|
#define setlocale SETLOCALE_FUNC_TAOS_FORBID
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
char *taosCharsetReplace(char *charsetstr);
|
char *taosCharsetReplace(char *charsetstr);
|
||||||
void taosGetSystemLocale(char *outLocale, char *outCharset);
|
void taosGetSystemLocale(char *outLocale, char *outCharset);
|
||||||
int32_t taosSetSystemLocale(const char *inLocale);
|
int32_t taosSetSystemLocale(const char *inLocale);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,9 +84,8 @@ TEST(osEnvTests, osSufficient) {
|
||||||
ret = osTempSpaceSufficient();
|
ret = osTempSpaceSufficient();
|
||||||
EXPECT_EQ(ret, true);
|
EXPECT_EQ(ret, true);
|
||||||
|
|
||||||
osSetSystemLocale(NULL, NULL);
|
taosSetSystemLocale(NULL);
|
||||||
osSetSystemLocale(NULL, NULL);
|
taosSetSystemLocale("1");
|
||||||
osSetSystemLocale("1", "2");
|
|
||||||
|
|
||||||
osSetProcPath(1, NULL);
|
osSetProcPath(1, NULL);
|
||||||
osSetProcPath(0, (char **)&ret);
|
osSetProcPath(0, (char **)&ret);
|
||||||
|
|
Loading…
Reference in New Issue