Skip to content

Commit

Permalink
Fixed z_info.c PID order
Browse files Browse the repository at this point in the history
  • Loading branch information
JEnoch committed Sep 28, 2022
1 parent 59fe1a9 commit 04b6b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/z_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "zenoh.h"

void print_zid(const z_id_t *id, void *ctx) {
for (int i = 15; i >= 0; i--) {
for (int i = 0; i < 16; i++) {
printf("%02x", id->id[i]);
}
printf("\n");
Expand Down

0 comments on commit 04b6b2c

Please sign in to comment.