Skip to content

Commit

Permalink
Fix print format in ibmad_sampler and ibmad_records_sampler
Browse files Browse the repository at this point in the history
  • Loading branch information
narategithub committed Aug 10, 2023
1 parent 514ad45 commit b0d35f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ static void dump_port_filters()
for (i = 0 ; i < MAX_CA_NAMES; i++) {
if (conf.ports[i].ca_name[0] == '\0')
break;
ovis_log(mylog, OVIS_LDEBUG, SAMP ": dpf: %s : 0x%x\n",
ovis_log(mylog, OVIS_LDEBUG, SAMP ": dpf: %s : 0x%lx\n",
conf.ports[i].ca_name, conf.ports[i].port_bits);
}
}
Expand Down
2 changes: 1 addition & 1 deletion ldms/src/sampler/ibmad_sampler/ibmad_sampler.c
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ static void dump_port_filters()
for (i = 0 ; i < MAX_CA_NAMES; i++) {
if (conf.ports[i].ca_name[0] == '\0')
break;
ovis_log(mylog, OVIS_LDEBUG, SAMP ": dpf: %s : 0x%x\n",
ovis_log(mylog, OVIS_LDEBUG, SAMP ": dpf: %s : 0x%lx\n",
conf.ports[i].ca_name, conf.ports[i].port_bits);
}
}
Expand Down

0 comments on commit b0d35f5

Please sign in to comment.