summaryrefslogtreecommitdiff
path: root/apps/app_adsiprog.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_adsiprog.c')
-rw-r--r--apps/app_adsiprog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_adsiprog.c b/apps/app_adsiprog.c
index 8b60b630e..efe1aa369 100644
--- a/apps/app_adsiprog.c
+++ b/apps/app_adsiprog.c
@@ -1456,7 +1456,7 @@ static void dump_message(char *type, char *vname, unsigned char *buf, int buflen
int x;
printf("%s %s: [ ", type, vname);
for (x = 0; x < buflen; x++)
- printf("%02x ", buf[x]);
+ printf("%02hhx ", buf[x]);
printf("]\n");
}
#endif