gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: -fix ftbfs


From: gnunet
Subject: [taler-exchange] branch master updated: -fix ftbfs
Date: Wed, 17 Aug 2022 21:07:20 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 9deca4a0 -fix ftbfs
9deca4a0 is described below

commit 9deca4a0c0c13237a34c91517e506d69161becf5
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Aug 17 21:07:11 2022 +0200

    -fix ftbfs
---
 src/templating/mustach-jansson.h | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/templating/mustach-jansson.h b/src/templating/mustach-jansson.h
index 27dcdd64..8fe989fa 100644
--- a/src/templating/mustach-jansson.h
+++ b/src/templating/mustach-jansson.h
@@ -23,7 +23,7 @@
 #ifndef _mustach_jansson_h_included_
 #define _mustach_jansson_h_included_
 
-#include <taler/taler_json_lib.h>
+#include "taler_json_lib.h"
 #include "mustach.h"
 
 /**
@@ -36,7 +36,7 @@
  * Returns 0 in case of success, -1 with errno set in case of system error
  * a other negative value in case of error.
  */
-extern int fmustach_jansson(const char *template, json_t *root, FILE *file);
+extern int fmustach_jansson (const char *template, json_t *root, FILE *file);
 
 /**
  * fmustach_jansson - Renders the mustache 'template' in 'fd' for 'root'.
@@ -48,7 +48,7 @@ extern int fmustach_jansson(const char *template, json_t 
*root, FILE *file);
  * Returns 0 in case of success, -1 with errno set in case of system error
  * a other negative value in case of error.
  */
-extern int fdmustach_jansson(const char *template, json_t *root, int fd);
+extern int fdmustach_jansson (const char *template, json_t *root, int fd);
 
 
 /**
@@ -62,7 +62,8 @@ extern int fdmustach_jansson(const char *template, json_t 
*root, int fd);
  * Returns 0 in case of success, -1 with errno set in case of system error
  * a other negative value in case of error.
  */
-extern int mustach_jansson(const char *template, json_t *root, char **result, 
size_t *size);
+extern int mustach_jansson (const char *template, json_t *root, char **result,
+                            size_t *size);
 
 /**
  * umustach_jansson - Renders the mustache 'template' for 'root' to custom 
writer 'writecb' with 'closure'.
@@ -75,8 +76,9 @@ extern int mustach_jansson(const char *template, json_t 
*root, char **result, si
  * Returns 0 in case of success, -1 with errno set in case of system error
  * a other negative value in case of error.
  */
-typedef int (*mustach_jansson_write_cb)(void *closure, const char *buffer, 
size_t size);
-extern int umustach_jansson(const char *template, json_t *root, 
mustach_jansson_write_cb writecb, void *closure);
+typedef int (*mustach_jansson_write_cb)(void *closure, const char *buffer,
+                                        size_t size);
+extern int umustach_jansson (const char *template, json_t *root,
+                             mustach_jansson_write_cb writecb, void *closure);
 
 #endif
-

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]