diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-02-08 10:37:01 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-02-08 10:37:01 +0100 |
commit | 1329992e8d922a55d5b55039ba8c700e7801dab5 (patch) | |
tree | d58fcde56fbff1453d71bb78b756b401ecd3c7ea /include | |
parent | 5de05afde9b308b5a7e77e595e3d827f1ef33a43 (diff) |
avoid use of keyword "private"
Change-Id: I7efe1ce2e6a49b6211298e509ae0b21573d6776a
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'include')
-rw-r--r-- | include/local-def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/local-def.h b/include/local-def.h index c0070888..f7ddeeb4 100644 --- a/include/local-def.h +++ b/include/local-def.h @@ -130,7 +130,7 @@ typedef struct { int uid; // post uid for debug AFB_PostType type; // JSON or FORM AFB_apiCB completeCB; // callback when post is completed - char *private; // use internally to keep track or partial buffer + char *privatebuf; // use internally to keep track or partial buffer struct MHD_PostProcessor *pp; // iterator handle } AFB_PostHandle; @@ -206,7 +206,7 @@ typedef struct { AFB_sessionE session; AFB_apiCB callback; char *info; - AFB_privateApi *private; + AFB_privateApi *privateapi; } AFB_restapi; // Plugin definition |