We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d0abb4 commit 5ac7f3dCopy full SHA for 5ac7f3d
testing/DHT_test.c
@@ -87,7 +87,7 @@ void print_friendlist()
87
for(i = 0; i < 4; i++) {
88
printf("ClientID: ");
89
for(j = 0; j < 32; j++) {
90
- if(0 <= friends_list[k].client_list[i].client_id[j] && friends_list[k].client_list[i].client_id[j] < 16)
+ if(friends_list[k].client_list[i].client_id[j] < 16)
91
printf("0");
92
printf("%hhX", friends_list[k].client_list[i].client_id[j]);
93
}
0 commit comments