diff options
author | Stephen Hemminger <stephen@networkplumber.org> | 2013-02-12 11:09:03 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen@networkplumber.org> | 2013-02-12 11:38:35 -0800 |
commit | d1f28cf181a6f77f230d90267eef0ecfbcb25f30 (patch) | |
tree | 960aa36c466c2a5e5d8e97557369ec34d22dae76 /tc/m_estimator.c | |
parent | 14645ec2310ee7cf6d2f3d5035ac37ec09674e2c (diff) | |
download | platform_external_iproute2-d1f28cf181a6f77f230d90267eef0ecfbcb25f30.tar.gz platform_external_iproute2-d1f28cf181a6f77f230d90267eef0ecfbcb25f30.tar.bz2 platform_external_iproute2-d1f28cf181a6f77f230d90267eef0ecfbcb25f30.zip |
ip: make local functions static
Diffstat (limited to 'tc/m_estimator.c')
-rw-r--r-- | tc/m_estimator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tc/m_estimator.c b/tc/m_estimator.c index a9e5dbc8..3dc8624f 100644 --- a/tc/m_estimator.c +++ b/tc/m_estimator.c @@ -22,6 +22,7 @@ #include "utils.h" #include "tc_util.h" +#include "tc_common.h" static void est_help(void); @@ -31,7 +32,6 @@ static void est_help(void) fprintf(stderr, " INTERVAL is interval between measurements\n"); fprintf(stderr, " TIME-CONST is averaging time constant\n"); fprintf(stderr, "Example: ... est 1sec 8sec\n"); - return; } int parse_estimator(int *p_argc, char ***p_argv, struct tc_estimator *est) |