summaryrefslogtreecommitdiff
path: root/src/include/taler_pq_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-05-15 14:36:08 +0200
committerChristian Grothoff <christian@grothoff.org>2015-05-15 14:36:08 +0200
commit955054bf25222be9c3942f695e74c8195627405c (patch)
tree6cf43afb1902054b972f0e7c24a623420e320065 /src/include/taler_pq_lib.h
parent6c774a1f032e2e09ab5e22a58a1979acc2c3430b (diff)
downloadexchange-955054bf25222be9c3942f695e74c8195627405c.tar.gz
exchange-955054bf25222be9c3942f695e74c8195627405c.tar.bz2
exchange-955054bf25222be9c3942f695e74c8195627405c.zip
misc bugfixes
Diffstat (limited to 'src/include/taler_pq_lib.h')
-rw-r--r--src/include/taler_pq_lib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/taler_pq_lib.h b/src/include/taler_pq_lib.h
index 148385c8b..6570cb956 100644
--- a/src/include/taler_pq_lib.h
+++ b/src/include/taler_pq_lib.h
@@ -297,7 +297,7 @@ struct TALER_PQ_ResultSpec
* @param dst point to where to store the result, type fits expected result size
* @return array entry for the result specification to use
*/
-#define TALER_PQ_RESULT_SPEC(name, dst) { TALER_PQ_RF_VARSIZE_BLOB, (void *) dst, sizeof (*(dst)), name, NULL }
+#define TALER_PQ_RESULT_SPEC(name, dst) { TALER_PQ_RF_FIXED_BLOB, (void *) (dst), sizeof (*(dst)), name, NULL }
/**