aboutsummaryrefslogtreecommitdiff
path: root/src/template/gnunet-template.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-07-26 21:20:11 +0000
committerChristian Grothoff <christian@grothoff.org>2009-07-26 21:20:11 +0000
commit7bc466bbdb8b64cac68c5ee59eb7ab6b9d85c420 (patch)
treedc415457e57f9cfda58eb22ca400a941ebcf602e /src/template/gnunet-template.c
parent4f8ba34b32328bd99b2f0c2ff9a2372712022b32 (diff)
downloadgnunet-7bc466bbdb8b64cac68c5ee59eb7ab6b9d85c420.tar.gz
gnunet-7bc466bbdb8b64cac68c5ee59eb7ab6b9d85c420.zip
const-ing of config-handles
Diffstat (limited to 'src/template/gnunet-template.c')
-rw-r--r--src/template/gnunet-template.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/template/gnunet-template.c b/src/template/gnunet-template.c
index ea47c7f45..ad0da8159 100644
--- a/src/template/gnunet-template.c
+++ b/src/template/gnunet-template.c
@@ -46,7 +46,8 @@ static void
46run (void *cls, 46run (void *cls,
47 struct GNUNET_SCHEDULER_Handle *sched, 47 struct GNUNET_SCHEDULER_Handle *sched,
48 char *const *args, 48 char *const *args,
49 const char *cfgfile, struct GNUNET_CONFIGURATION_Handle *cfg) 49 const char *cfgfile,
50 const struct GNUNET_CONFIGURATION_Handle *cfg)
50{ 51{
51 /* main code here */ 52 /* main code here */
52} 53}