diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-08-25 16:18:24 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-08-25 16:18:24 +0200 |
commit | eb559970846f0fa27f1f25c482cd07210a56f4b1 (patch) | |
tree | 8526637825e520e1420b17515934ced794a33c01 /src/wire/wire_helper.c | |
parent | 3742239c13001433eeade439a0e0490f07351c43 (diff) |
re-format code
Diffstat (limited to 'src/wire/wire_helper.c')
-rw-r--r-- | src/wire/wire_helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wire/wire_helper.c b/src/wire/wire_helper.c index 0ce8d599a..e5ca8b168 100644 --- a/src/wire/wire_helper.c +++ b/src/wire/wire_helper.c @@ -65,7 +65,7 @@ TALER_WIRE_payto_get_method (const char *payto_url) PAYTO, strlen (PAYTO))) return NULL; - start = &payto_url[strlen(PAYTO)]; + start = &payto_url[strlen (PAYTO)]; end = strchr (start, (unsigned char) '/'); if (NULL == end) @@ -91,7 +91,7 @@ TALER_WIRE_get_plugin_from_method (const char *method) {NULL, NULL} }; - for (unsigned int i=0; + for (unsigned int i = 0; NULL != ct[i].method; i++) { |