diff options
author | Dan Williams <dan@bigw.org> | 2025-01-22 15:50:50 +0000 |
---|---|---|
committer | Dan Williams <dan@bigw.org> | 2025-01-22 15:50:50 +0000 |
commit | 18f6190ff233f06c5a2e825dd0db188bfc52e030 (patch) | |
tree | 274cb74e61276a262adf03dd24ac956cd6662e9a /src | |
parent | 90c07311a06c5bf03b69c8c2b74743ddcd13dce0 (diff) | |
parent | 42262a5827f2f6a6c037946edd6749f2479b9c23 (diff) |
Merge request !1283 from 'mm-sim-validate-fix-gsize-format'
modem-helpers: fix gsize format
https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/merge_requests/1283
See merge request mobile-broadband/ModemManager!1283
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-modem-helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-modem-helpers.c b/src/mm-modem-helpers.c index 1b07ab41..f61d2663 100644 --- a/src/mm-modem-helpers.c +++ b/src/mm-modem-helpers.c @@ -5372,7 +5372,7 @@ mm_sim_validate_mnc_length (const guint8 *bin, if (binlen < 4) { g_set_error (error, MM_CORE_ERROR, MM_CORE_ERROR_FAILED, - "SIM returned too short response of length %lu (should be 4)", + "SIM returned too short response of length %" G_GSIZE_FORMAT " (should be 4)", binlen); return 0; } |