Use %zu not %zd for printing size_t.

PR:		185007
Submitted by:	saper saper.info
MFC after:	3 days
This commit is contained in:
Gavin Atkinson 2014-07-05 20:08:25 +00:00
parent 2e60665eda
commit c57440ecd7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=268299

View File

@ -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
}