^ is the XOR operator.
@ -196,7 +196,7 @@ int main(int argc, char *argv[])
if (argc > 2)
{
len = atoi(argv[2]);
if (len > (2^30))
if (len > (1 << 30))
fprintf(stderr, "buffer too large (1 GiB limit)\n");
return 1;
@ -56,7 +56,7 @@ int main(int argc, char *argv[])
}
rounds = atoi(argv[3]);
if (rounds < 0 || rounds > (2^26))
if (rounds < 0 || rounds > (1 << 26))
{ /* arbitrary limit to the number of chunk_t/sigs that fit into 1 GiB */
usage();