summaryrefslogtreecommitdiff
path: root/accel-pppd/ppp/lcp_opt_accomp.c
diff options
context:
space:
mode:
authorKozlov Dmitry <dima@server>2011-05-30 11:24:27 +0400
committerKozlov Dmitry <dima@server>2011-05-30 11:24:27 +0400
commit276beb78cea777ff8d81d9f5a4cd107c5a3dc2aa (patch)
treef50c4e781ba13c3ee59382a4466cfafa31ef464a /accel-pppd/ppp/lcp_opt_accomp.c
parent01afc34e830f2adf94c191a3c4f2761888dae53b (diff)
downloadaccel-ppp-276beb78cea777ff8d81d9f5a4cd107c5a3dc2aa.tar.gz
accel-ppp-276beb78cea777ff8d81d9f5a4cd107c5a3dc2aa.zip
rewrited initialization procedure (fix gcc-4.6 builds)
Diffstat (limited to 'accel-pppd/ppp/lcp_opt_accomp.c')
-rw-r--r--accel-pppd/ppp/lcp_opt_accomp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/accel-pppd/ppp/lcp_opt_accomp.c b/accel-pppd/ppp/lcp_opt_accomp.c
index 241b0e06..33347d88 100644
--- a/accel-pppd/ppp/lcp_opt_accomp.c
+++ b/accel-pppd/ppp/lcp_opt_accomp.c
@@ -99,8 +99,9 @@ static void accomp_print(void (*print)(const char *fmt,...),struct lcp_option_t
print("<accomp>");
}
-static void __init accomp_opt_init()
+static void accomp_opt_init()
{
lcp_option_register(&accomp_opt_hnd);
}
+DEFINE_INIT(4, accomp_opt_init);