diff options
author | Kozlov Dmitry <dima@server> | 2010-12-27 18:38:46 +0300 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-12-27 18:38:46 +0300 |
commit | 73b6989bdc0066caa4d8c351127345d7785feb92 (patch) | |
tree | 657627aea5e11304be5de0e29c6582101afb521c /accel-pptpd/ctrl | |
parent | 330c5a3c8a531d79a2f87953806ef47f61262e14 (diff) | |
download | accel-ppp-73b6989bdc0066caa4d8c351127345d7785feb92.tar.gz accel-ppp-73b6989bdc0066caa4d8c351127345d7785feb92.zip |
fix compilation warnings
Diffstat (limited to 'accel-pptpd/ctrl')
-rw-r--r-- | accel-pptpd/ctrl/l2tp/dict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pptpd/ctrl/l2tp/dict.c b/accel-pptpd/ctrl/l2tp/dict.c index a0ca9999..c93ccd48 100644 --- a/accel-pptpd/ctrl/l2tp/dict.c +++ b/accel-pptpd/ctrl/l2tp/dict.c @@ -117,7 +117,7 @@ static int dict_load(const char *fname) struct l2tp_dict_attr_t *attr; struct l2tp_dict_value_t *value; struct list_head *items; - int r, n, i; + int i, r, n = 0; f = fopen(fname, "r"); if (!f) { |