aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/lib/utils/identification.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-05-09 07:34:25 +0000
committerMartin Willi <martin@strongswan.org>2006-05-09 07:34:25 +0000
commitf768bdc3f3868669b7a5cd22ddec7e199be663a8 (patch)
treef602bc4f6fb7f148cff53e4000ba84af93367285 /src/charon/lib/utils/identification.c
parent24953b5e1806c95e0809708942461753b5149c29 (diff)
downloadstrongswan-f768bdc3f3868669b7a5cd22ddec7e199be663a8.tar.bz2
strongswan-f768bdc3f3868669b7a5cd22ddec7e199be663a8.tar.xz
- applied some -W's from strongswan
- fixed that warnings
Diffstat (limited to 'src/charon/lib/utils/identification.c')
-rw-r--r--src/charon/lib/utils/identification.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/lib/utils/identification.c b/src/charon/lib/utils/identification.c
index 33f3d92cd..9c17ac54c 100644
--- a/src/charon/lib/utils/identification.c
+++ b/src/charon/lib/utils/identification.c
@@ -248,7 +248,7 @@ struct private_identification_t {
id_type_t type;
};
-static private_identification_t *identification_create();
+static private_identification_t *identification_create(void);
/**
@@ -952,7 +952,7 @@ static void destroy(private_identification_t *this)
/**
* Generic constructor used for the other constructors.
*/
-static private_identification_t *identification_create()
+static private_identification_t *identification_create(void)
{
private_identification_t *this = malloc_thing(private_identification_t);