diff options
author | MS <ms@taler.net> | 2020-10-20 16:39:09 +0200 |
---|---|---|
committer | MS <ms@taler.net> | 2020-10-20 16:39:09 +0200 |
commit | d615702a365d8f0b93c788c2bbad214d26ea3700 (patch) | |
tree | 6afa6fa0a85de24164d63c34dd3003eac0eda27e | |
parent | eab97f38f37cd42da5d4508e083c7f70eba39163 (diff) |
@param name[out] -> @param[out] name
-rw-r--r-- | src/backenddb/plugin_merchantdb_postgres.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c index 50b8f8ec..19ea0ed0 100644 --- a/src/backenddb/plugin_merchantdb_postgres.c +++ b/src/backenddb/plugin_merchantdb_postgres.c @@ -40,7 +40,7 @@ * when fetching amounts from the database. * * @param field name of the database field to fetch amount from - * @param amountp[out] pointer to amount to set + * @param[out] amountp pointer to amount to set */ #define TALER_PQ_RESULT_SPEC_AMOUNT(field,amountp) \ TALER_PQ_result_spec_amount ( \ @@ -51,7 +51,7 @@ * when fetching amounts from the database. NBO variant. * * @param field name of the database field to fetch amount from - * @param amountp[out] pointer to amount to set + * @param[out] amountp pointer to amount to set */ #define TALER_PQ_RESULT_SPEC_AMOUNT_NBO(field, amountp) \ TALER_PQ_result_spec_amount_nbo ( \ @@ -63,7 +63,7 @@ * when fetching amounts from the database. * * @param field name of the database field to fetch amount from - * @param amountp[out] pointer to amount to set + * @param[out] amountp pointer to amount to set */ #define TALER_PQ_RESULT_SPEC_AMOUNT(field,amountp) \ TALER_PQ_result_spec_amount ( \ |