aboutsummaryrefslogtreecommitdiff
path: root/src/chat
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-16 16:03:20 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-16 16:03:20 +0000
commit16a6919a9f98ee9fa1fee9dd262906c321004a19 (patch)
treee09d4fe5191dc329b3e1b667f2914f8313bcba59 /src/chat
parent4d7904c62bb867c44e90b8e9f7cdbb4b283abc44 (diff)
downloadgnunet-16a6919a9f98ee9fa1fee9dd262906c321004a19.tar.gz
gnunet-16a6919a9f98ee9fa1fee9dd262906c321004a19.zip
even nicer indentation, thanks to LRN's indent patch
Diffstat (limited to 'src/chat')
-rw-r--r--src/chat/chat.c8
-rw-r--r--src/chat/gnunet-chat.c3
2 files changed, 6 insertions, 5 deletions
diff --git a/src/chat/chat.c b/src/chat/chat.c
index 74dde678c..fb47b6c15 100644
--- a/src/chat/chat.c
+++ b/src/chat/chat.c
@@ -148,7 +148,8 @@ struct GNUNET_CHAT_SendReceiptContext
148/** 148/**
149 * Ask client to send a join request. 149 * Ask client to send a join request.
150 */ 150 */
151static int rejoin_room (struct GNUNET_CHAT_Room *chat_room); 151static int
152rejoin_room (struct GNUNET_CHAT_Room *chat_room);
152 153
153 154
154/** 155/**
@@ -404,9 +405,8 @@ process_result (struct GNUNET_CHAT_Room *room,
404 if (NULL != room->confirmation_callback) 405 if (NULL != room->confirmation_callback)
405 room->confirmation_callback (room->confirmation_cls, room, 406 room->confirmation_callback (room->confirmation_cls, room,
406 ntohl (receipt->sequence_number), 407 ntohl (receipt->sequence_number),
407 GNUNET_TIME_absolute_ntoh (receipt-> 408 GNUNET_TIME_absolute_ntoh
408 timestamp), 409 (receipt->timestamp), &receipt->target);
409 &receipt->target);
410 break; 410 break;
411 default: 411 default:
412 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Unknown message type: '%u'\n"), 412 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Unknown message type: '%u'\n"),
diff --git a/src/chat/gnunet-chat.c b/src/chat/gnunet-chat.c
index c656d1cad..53884a299 100644
--- a/src/chat/gnunet-chat.c
+++ b/src/chat/gnunet-chat.c
@@ -76,7 +76,8 @@ free_user_list ()
76 } 76 }
77} 77}
78 78
79static int do_help (const char *args, const void *xtra); 79static int
80do_help (const char *args, const void *xtra);
80 81
81 82
82/** 83/**