From f03f086fcba1cce1c4b4b8c2c16049f96474dd7a Mon Sep 17 00:00:00 2001 From: Arnaud Ferraris Date: Tue, 5 Oct 2021 23:40:44 +0200 Subject: [PATCH] src: fix typo --- src/at.c | 4 ++-- src/gnss.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/at.c b/src/at.c index 13f26b3..2c79bf8 100644 --- a/src/at.c +++ b/src/at.c @@ -282,7 +282,7 @@ static gboolean modem_response(gint fd, else if (strstr(response, "ERROR") && !strstr(response, "fast/poweroff")) retry_at_command(manager); /* - * Successfull AT responses contain 'OK', except for AT+QFUPL which also + * Successful AT responses contain 'OK', except for AT+QFUPL which also * returns 'CONNECT' when the modem is ready to receive data over serial */ else if (strstr(response, "OK") || strstr(response, "CONNECT")) { @@ -391,7 +391,7 @@ void at_destroy(struct EG25Manager *manager) void at_sequence_configure(struct EG25Manager *manager) { /* - * When configuring a new modem we should avoid processing an old + * When configuring a new modem we should avoid processing an old * command queue, so let's first clear the whole list */ if (manager->at_cmds) diff --git a/src/gnss.c b/src/gnss.c index 16bcdfd..a71ba1e 100644 --- a/src/gnss.c +++ b/src/gnss.c @@ -249,7 +249,7 @@ static void fetch_assistance_data(struct EG25Manager *manager) goto bail; } - g_message("Fetching GNSS assistance data from %s was successfull", url); + g_message("Fetching GNSS assistance data from %s was successful", url); fflush(tmp_file); curl_easy_cleanup(curl);