aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-04-09 23:15:47 +0000
committerChristian Grothoff <christian@grothoff.org>2016-04-09 23:15:47 +0000
commit6b6d9999bc8e5901b5da45db8a51b06798aa93b5 (patch)
treeba92b38a5106e26002d3b4856d38a0086b5fdced
parent29e6158507a0758192075ac6ece7ba8e75ddc49a (diff)
downloadgnunet-6b6d9999bc8e5901b5da45db8a51b06798aa93b5.tar.gz
gnunet-6b6d9999bc8e5901b5da45db8a51b06798aa93b5.zip
-fix indent
-rw-r--r--src/include/gnunet_regex_service.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/include/gnunet_regex_service.h b/src/include/gnunet_regex_service.h
index 07b5aa93a..97063df61 100644
--- a/src/include/gnunet_regex_service.h
+++ b/src/include/gnunet_regex_service.h
@@ -102,12 +102,13 @@ GNUNET_REGEX_announce_cancel (struct GNUNET_REGEX_Announcement *a);
102 * @param put_path Path of the put request. 102 * @param put_path Path of the put request.
103 * @param put_path_length Length of the @a put_path. 103 * @param put_path_length Length of the @a put_path.
104 */ 104 */
105typedef void (*GNUNET_REGEX_Found)(void *cls, 105typedef void
106 const struct GNUNET_PeerIdentity *id, 106(*GNUNET_REGEX_Found)(void *cls,
107 const struct GNUNET_PeerIdentity *get_path, 107 const struct GNUNET_PeerIdentity *id,
108 unsigned int get_path_length, 108 const struct GNUNET_PeerIdentity *get_path,
109 const struct GNUNET_PeerIdentity *put_path, 109 unsigned int get_path_length,
110 unsigned int put_path_length); 110 const struct GNUNET_PeerIdentity *put_path,
111 unsigned int put_path_length);
111 112
112 113
113/** 114/**