Skip to content

Commit d8f1845

Browse files
committed
Fix pointer signedness warning.
1 parent 99ad42f commit d8f1845

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/util/regress/uuid/uuid_test.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ main(int argc, char *argv[])
7575

7676
/* Do 16 passes. */
7777
for (ntests = 0; ntests < 16; ntests++) {
78-
char uuid_buf[16], uuid_str[37];
78+
unsigned char uuid_buf[16];
79+
char uuid_str[37];
7980

8081
sudo_uuid_create(uuid.u8);
8182

0 commit comments

Comments
 (0)