Merge branch 'feature/os' of https://github.com/taosdata/TDengine into feature/os

This commit is contained in:
Shengliang Guan 2020-08-08 16:39:37 +08:00
commit 7444fe7a84
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ taos_consume
taos_unsubscribe
```
这些API的文档请见 [C/C++ 数据订阅接口](connector/#C/C++-Connector)
这些API的文档请见 [C/C++ Connector](https://www.taosdata.com/cn/documentation20/connector/)
下面仍以智能电表场景为例介绍一下它们的具体用法(超级表和子表结构请参考上一节“连续查询”),
完整的示例代码可以在 [这里](https://github.com/taosdata/TDengine/blob/master/tests/examples/c/subscribe.c) 找到。

View File

@ -251,7 +251,7 @@ typedef struct DemoArguments {
void parse_args(int argc, char *argv[], SDemoArguments *arguments) {
argp_parse(&argp, argc, argv, 0, 0, &arguments);
if (arguments.abort) {
if (arguments->abort) {
#ifndef _ALPINE
error(10, 0, "ABORTED");
#else