summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-04-19 20:13:24 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-04-19 20:13:50 +0200
commit8f4e0efebdc6d2f4faf10b6003d87329298e773d (patch)
tree89a607a03989f9dc0c24d4121f2c495fb7f3b3e4 /src
parent83a4ffce0e7bfd43df4511a53d8f3afc408ea276 (diff)
downloadmerchant-8f4e0efebdc6d2f4faf10b6003d87329298e773d.tar.gz
merchant-8f4e0efebdc6d2f4faf10b6003d87329298e773d.tar.bz2
merchant-8f4e0efebdc6d2f4faf10b6003d87329298e773d.zip
Fix compiler warnings.
Diffstat (limited to 'src')
-rw-r--r--src/lib/test_merchant_api.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/test_merchant_api.c b/src/lib/test_merchant_api.c
index 946760f3..17a556e6 100644
--- a/src/lib/test_merchant_api.c
+++ b/src/lib/test_merchant_api.c
@@ -1188,6 +1188,7 @@ next_command (struct InterpreterState *is)
* 0 if the exchange's reply is bogus (fails to follow the protocol)
* @param ec taler-specific error code, #TALER_EC_NONE on success
* @param serial_id unique ID of the wire transfer
+ * @param timestamp time stamp when the transfer was made effective at the bank
* @param full_response full response from the exchange (for logging, in case of errors)
*/
static void
@@ -1195,6 +1196,7 @@ add_incoming_cb (void *cls,
unsigned int http_status,
enum TALER_ErrorCode ec,
uint64_t serial_id,
+ struct GNUNET_TIME_Absolute timestamp,
const json_t *full_response)
{
struct InterpreterState *is = cls;