Add files via upload

This commit is contained in:
wibyweb 2023-03-24 23:32:10 -04:00 committed by GitHub
parent 79298ef3fa
commit a678c57e0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

3
c/cr.c
View file

@ -91,8 +91,7 @@ int main(int argc, char **argv)
}
fclose(shardfile);
}else{
printf("\n'shards' file is missing. Create the file and indicate the number of available shards you are using or set it to 0 if you aren't. The default is 4.\n\n");
exit(0);
printf("\nWarning: 'shards' file is missing. Create the file and indicate the number of available shards you are using or set it to 0 if you aren't.\n\n");
}
if(nShards > 0){
srand(time(NULL));

View file

@ -1 +1 @@
4
0