summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-11-19 11:46:49 +0100
committerChristian Grothoff <christian@grothoff.org>2021-11-19 11:46:49 +0100
commit5862a8041d72f208cb7c131d3b63cc144ae9473d (patch)
treed3ffb3b3045192d40e6b0b5d095257546eaf54db
parent38b828c7c9b1f0c55916b2b50462e4cfa39cb15c (diff)
downloadmerchant-5862a8041d72f208cb7c131d3b63cc144ae9473d.tar.gz
merchant-5862a8041d72f208cb7c131d3b63cc144ae9473d.tar.bz2
merchant-5862a8041d72f208cb7c131d3b63cc144ae9473d.zip
-fix bogus member init
-rw-r--r--src/backend/taler-merchant-httpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c
index 65d92788..9f460df1 100644
--- a/src/backend/taler-merchant-httpd.c
+++ b/src/backend/taler-merchant-httpd.c
@@ -1636,8 +1636,8 @@ void
TMH_reload_instances (const char *id)
{
struct GNUNET_DB_EventHeaderP es = {
- es.size = ntohs (sizeof (es)),
- es.type = ntohs (TALER_DBEVENT_MERCHANT_INSTANCE_SETTINGS)
+ .size = ntohs (sizeof (es)),
+ .type = ntohs (TALER_DBEVENT_MERCHANT_INSTANCE_SETTINGS)
};
GNUNET_log (GNUNET_ERROR_TYPE_INFO,