Skip to content

Commit

Permalink
Remove incorrect parenthesis in code sample
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Egli authored and djc committed Aug 28, 2014
1 parent 7b5318b commit 06f3e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/nn_cmsg.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ while (hdr != NULL) {
printf ("level: %d property: %d length: %dB data: ",
(int) hdr->cmsg_level,
(int) hdr->cmsg_type,
(int) len));
(int) len);
unsigned char *data = NN_CMSG_DATA(hdr);
while (len) {
printf ("%02X", *data);
Expand Down

0 comments on commit 06f3e3f

Please sign in to comment.