diff options
-rw-r--r-- | gatchat/gatppp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gatchat/gatppp.c b/gatchat/gatppp.c index f1cba647..e92fe5d2 100644 --- a/gatchat/gatppp.c +++ b/gatchat/gatppp.c @@ -497,7 +497,7 @@ GAtPPP *g_at_ppp_new(GIOChannel *modem) { GAtHDLC *hdlc; GAtPPP *ppp; - + hdlc = g_at_hdlc_new(modem); if (hdlc == NULL) return NULL; @@ -512,7 +512,7 @@ GAtPPP *g_at_ppp_new_from_io(GAtIO *io) { GAtHDLC *hdlc; GAtPPP *ppp; - + hdlc = g_at_hdlc_new_from_io(io); if (hdlc == NULL) return NULL; |