diff options
Diffstat (limited to 'src/mint/taler-mint-httpd_parsing.c')
-rw-r--r-- | src/mint/taler-mint-httpd_parsing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mint/taler-mint-httpd_parsing.c b/src/mint/taler-mint-httpd_parsing.c index 550a8922..f61049b5 100644 --- a/src/mint/taler-mint-httpd_parsing.c +++ b/src/mint/taler-mint-httpd_parsing.c @@ -268,7 +268,7 @@ TALER_MINT_parse_post_cleanup_callback (void *con_cls) * * @param connection the connection to send an error response to * @param root the JSON node to start the navigation at. - * @param ... navigation specification (see JNAV_*) + * @param ... navigation specification (see `enum TALER_MINT_JsonNavigationCommand`) * @return GNUNET_YES if navigation was successful * GNUNET_NO if json is malformed, error response was generated * GNUNET_SYSERR on internal error (no response was generated, @@ -276,8 +276,8 @@ TALER_MINT_parse_post_cleanup_callback (void *con_cls) */ int GNUNET_MINT_parse_navigate_json (struct MHD_Connection *connection, - const json_t *root, - ...) + const json_t *root, + ...) { va_list argp; int ret; |