diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-12-01 15:08:09 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-12-02 23:55:35 +0100 |
commit | da31efb4e0708675cd4eda19eadfcd48ef691aa3 (patch) | |
tree | 996527bfddeb3324e4ef6b65df09d8685a6e6e11 /src/rest.c | |
parent | 00d54325d3d8a325ebcab40df549b4146204f6e0 (diff) |
rest: statify image restore and create function
only used in rest.c, remove the forward declaration in json.h
Diffstat (limited to 'src/rest.c')
-rw-r--r-- | src/rest.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -3680,8 +3680,7 @@ static int og_cmd_images(char *buffer_reply) return 0; } -int og_json_parse_create_image(json_t *element, - struct og_msg_params *params) +static int og_json_parse_create_image(json_t *element, struct og_msg_params *params) { const char *key; json_t *value; @@ -3826,7 +3825,7 @@ static int og_cmd_update_image(json_t *element, struct og_msg_params *params) return og_cmd_add_image(element, params, true); } -int og_json_parse_restore_image(json_t *element, struct og_msg_params *params) +static int og_json_parse_restore_image(json_t *element, struct og_msg_params *params) { const char *key; json_t *value; |