aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-03 21:38:45 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-03 21:38:45 +0000
commitd8abe51562c11473ebcb823ad67c529be2c9dc92 (patch)
tree95f6f53b8060d72c7c0b206c728ab03d73590292 /src/core
parent721e49caeea6ba5073f8bc5c6c08359295c02bb5 (diff)
downloadgnunet-d8abe51562c11473ebcb823ad67c529be2c9dc92.tar.gz
gnunet-d8abe51562c11473ebcb823ad67c529be2c9dc92.zip
style improvments wrt Mantis 1614 patch
Diffstat (limited to 'src/core')
-rw-r--r--src/core/test_core_api.c2
-rw-r--r--src/core/test_core_api_reliability.c2
-rw-r--r--src/core/test_core_api_start_only.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/test_core_api.c b/src/core/test_core_api.c
index a4c3b0a78..eb7bc60f6 100644
--- a/src/core/test_core_api.c
+++ b/src/core/test_core_api.c
@@ -54,7 +54,7 @@ struct PeerContext
54 struct GNUNET_MessageHeader *hello; 54 struct GNUNET_MessageHeader *hello;
55 int connect_status; 55 int connect_status;
56#if START_ARM 56#if START_ARM
57 GNUNET_OS_Process *arm_proc; 57 struct GNUNET_OS_Process *arm_proc;
58#endif 58#endif
59}; 59};
60 60
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
index 0b3be2f82..49fe8f9de 100644
--- a/src/core/test_core_api_reliability.c
+++ b/src/core/test_core_api_reliability.c
@@ -74,7 +74,7 @@ struct PeerContext
74 struct GNUNET_MessageHeader *hello; 74 struct GNUNET_MessageHeader *hello;
75 int connect_status; 75 int connect_status;
76#if START_ARM 76#if START_ARM
77 GNUNET_OS_Process *arm_proc; 77 struct GNUNET_OS_Process *arm_proc;
78#endif 78#endif
79}; 79};
80 80
diff --git a/src/core/test_core_api_start_only.c b/src/core/test_core_api_start_only.c
index e82f12ed3..958defbf9 100644
--- a/src/core/test_core_api_start_only.c
+++ b/src/core/test_core_api_start_only.c
@@ -49,7 +49,7 @@ struct PeerContext
49 struct GNUNET_CORE_Handle *ch; 49 struct GNUNET_CORE_Handle *ch;
50 struct GNUNET_PeerIdentity id; 50 struct GNUNET_PeerIdentity id;
51#if START_ARM 51#if START_ARM
52 GNUNET_OS_Process *arm_proc; 52 struct GNUNET_OS_Process *arm_proc;
53#endif 53#endif
54}; 54};
55 55