mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use %zu not %zd for printing size_t.
PR: 185007 Submitted by: saper saper.info MFC after: 3 days
This commit is contained in:
parent
2e60665eda
commit
c57440ecd7
1 changed files with 1 additions and 1 deletions
|
|
@ -601,7 +601,7 @@ at_cmd(struct ctx *ctx, const char *resp, resp_cb cb, resp_arg *ra, const char *
|
|||
if (resp != NULL) {
|
||||
l = strlen(resp);
|
||||
#ifdef DEBUG
|
||||
fprintf(stderr, "SYNC_EXP: %s (%zd)\n", resp, l);
|
||||
fprintf(stderr, "SYNC_EXP: %s (%zu)\n", resp, l);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue