summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksandermj@chromium.org>2022-10-04 16:07:05 +0200
committerAleksander Morgado <aleksandermj@chromium.org>2022-10-04 16:07:31 +0200
commitae00d6f6186745bc31e8c6abb8e0b1a85220ecec (patch)
treeaca0c928706def302a1c94c0ee60c20ffc98f082
parent9f550c4918b4f231c91786e04194857f6b6a2d55 (diff)
downloadlibmbim-ae00d6f6186745bc31e8c6abb8e0b1a85220ecec.tar.gz
libmbim-glib,message: fix typo in error message
-rw-r--r--src/libmbim-glib/mbim-message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmbim-glib/mbim-message.c b/src/libmbim-glib/mbim-message.c
index 2ee82dc..6878043 100644
--- a/src/libmbim-glib/mbim-message.c
+++ b/src/libmbim-glib/mbim-message.c
@@ -217,7 +217,7 @@ _mbim_message_validate_partial_fragment (const MbimMessage *self,
{
if (MBIM_MESSAGE_FRAGMENT_GET_CURRENT (self) >= MBIM_MESSAGE_FRAGMENT_GET_TOTAL (self)) {
g_set_error (error, MBIM_CORE_ERROR, MBIM_CORE_ERROR_INVALID_MESSAGE,
- "Invalid message fragement (%u/%u)",
+ "Invalid message fragment (%u/%u)",
MBIM_MESSAGE_FRAGMENT_GET_CURRENT (self),
MBIM_MESSAGE_FRAGMENT_GET_TOTAL (self));
return FALSE;