From 39390f76cb75cfd5830495301cb08221e7934d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Tue, 24 Jan 2023 18:53:15 +0800 Subject: Simplify preferences by not making it a pointer --- ord.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ord.c') diff --git a/ord.c b/ord.c index 5af1a91..3997b61 100644 --- a/ord.c +++ b/ord.c @@ -76,8 +76,8 @@ void interchange_ord_checkout(const struct interchange_ord_order *order, const s { "zip", member->zip }, { "email", member->email }, { "phone_day", member->phone_day }, - { "mv_same_billing", member->preferences->mv_same_billing? "1" : "0" }, - { "email_copy", member->preferences->email_copy? "1" : "0" } + { "mv_same_billing", member->preferences.mv_same_billing? "1" : "0" }, + { "email_copy", member->preferences.email_copy? "1" : "0" } }}, "%s", "ord/checkout"); } -- cgit v1.2.3