aboutsummaryrefslogtreecommitdiff
path: root/src/arm/test_arm_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-15 21:54:06 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-15 21:54:06 +0000
commit5746309cb4be2073d550ad7a6885e918631dbc38 (patch)
tree89455bc4aadf977816b38df13f990372cd81d71a /src/arm/test_arm_api.c
parent6fd3e715cae09fa6e657c96f1c6f9711ee51f42f (diff)
downloadgnunet-5746309cb4be2073d550ad7a6885e918631dbc38.tar.gz
gnunet-5746309cb4be2073d550ad7a6885e918631dbc38.zip
indentation
Diffstat (limited to 'src/arm/test_arm_api.c')
-rw-r--r--src/arm/test_arm_api.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/arm/test_arm_api.c b/src/arm/test_arm_api.c
index 1e9d84202..11c245ea1 100644
--- a/src/arm/test_arm_api.c
+++ b/src/arm/test_arm_api.c
@@ -114,9 +114,8 @@ arm_notify (void *cls, int success)
114 114
115 115
116static void 116static void
117task (void *cls, 117task (void *cls, char *const *args, const char *cfgfile,
118 char *const *args, 118 const struct GNUNET_CONFIGURATION_Handle *c)
119 const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
120{ 119{
121 cfg = c; 120 cfg = c;
122 arm = GNUNET_ARM_connect (cfg, NULL); 121 arm = GNUNET_ARM_connect (cfg, NULL);
@@ -145,9 +144,8 @@ check ()
145 }; 144 };
146 GNUNET_assert (GNUNET_OK == 145 GNUNET_assert (GNUNET_OK ==
147 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, 146 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
148 argv, 147 argv, "test-arm-api", "nohelp", options,
149 "test-arm-api", 148 &task, NULL));
150 "nohelp", options, &task, NULL));
151 return ok; 149 return ok;
152} 150}
153 151