diff options
author | Lukas Voegl <lvoegl@tdt.de> | 2025-01-17 14:50:28 +0100 |
---|---|---|
committer | Lukas Voegl <lvoegl@tdt.de> | 2025-01-17 14:50:28 +0100 |
commit | 42262a5827f2f6a6c037946edd6749f2479b9c23 (patch) | |
tree | 274cb74e61276a262adf03dd24ac956cd6662e9a /src/mm-modem-helpers.c | |
parent | 90c07311a06c5bf03b69c8c2b74743ddcd13dce0 (diff) |
modem-helpers: fix gsize format
Diffstat (limited to 'src/mm-modem-helpers.c')
-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; } |