char vs unsigned char in the sodium_utils test

This commit is contained in:
Frank Denis
2013-04-26 21:51:59 -07:00
parent 1706d63d65
commit de517b70d9
+2 -2
View File
@@ -6,8 +6,8 @@
int main(void)
{
char buf1[1000];
char buf2[1000];
unsigned char buf1[1000];
unsigned char buf2[1000];
randombytes(buf1, sizeof buf1);
memcpy(buf2, buf1, sizeof buf2);