From 0e822b0a6966fd1ee533f09141185423b770903e Mon Sep 17 00:00:00 2001 From: winckel <winckel@eurecom.fr> Date: Wed, 4 Dec 2013 13:11:36 +0000 Subject: [PATCH] Fixed some warnings due to bad prototype syntax. git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4583 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair2/UTIL/MATH/oml.h | 4 ++-- openair2/UTIL/OTG/otg_tx.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openair2/UTIL/MATH/oml.h b/openair2/UTIL/MATH/oml.h index b34d47d5cc..e3aaa3619d 100644 --- a/openair2/UTIL/MATH/oml.h +++ b/openair2/UTIL/MATH/oml.h @@ -85,7 +85,7 @@ void init_seeds(int seed); * \note * @ingroup _oml */ -double wichman_hill() ; +double wichman_hill(void) ; /*! \fn double uniform_rng(); * \brief generates uniform random number with algo: wichman_hill / random() / Taus @@ -94,7 +94,7 @@ double wichman_hill() ; * \note * @ingroup _oml */ -double uniform_rng(); +double uniform_rng(void); /*! \fn double uniform_dist(double min, double max); * \brief diff --git a/openair2/UTIL/OTG/otg_tx.h b/openair2/UTIL/OTG/otg_tx.h index 725c959810..3ebeff2139 100644 --- a/openair2/UTIL/OTG/otg_tx.h +++ b/openair2/UTIL/OTG/otg_tx.h @@ -166,7 +166,7 @@ int adjust_size(int size); */ void header_size_gen(int src, int dst, int application); -void init_predef_multicast_traffic(); +void init_predef_multicast_traffic(void); /*! \fn void init_predef_traffic(); * \brief initialise OTG with predifined value for pre-configured traffic: cbr, openarena,etc. -- GitLab