From c57440ecd757be91a9738b4d404dde0dae6bad89 Mon Sep 17 00:00:00 2001 From: Gavin Atkinson Date: Sat, 5 Jul 2014 20:08:25 +0000 Subject: [PATCH] Use %zu not %zd for printing size_t. PR: 185007 Submitted by: saper saper.info MFC after: 3 days --- usr.sbin/uhsoctl/uhsoctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/uhsoctl/uhsoctl.c b/usr.sbin/uhsoctl/uhsoctl.c index bffefc96e10..21b62209aaa 100644 --- a/usr.sbin/uhsoctl/uhsoctl.c +++ b/usr.sbin/uhsoctl/uhsoctl.c @@ -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 }