Make the array bigger~

This commit is contained in:
Bandie 2018-09-30 12:46:14 +02:00
parent 24b6adfa8d
commit 37b11825a7
Signed by: Bandie
GPG Key ID: C1E133BC65A822DD
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ LICENSE : GNU-GPLv3
#define _(String) gettext(String)
int writePasswords(char pw[][99], char* pwfile){
int writePasswords(char pw[][256], char* pwfile){
FILE *f = fopen(pwfile, "w");
if(f == NULL){

View File

@ -5,4 +5,4 @@ DATE : 2018-03-27T02:34:08+02:00
LICENSE : GNU-GPLv3
*/
int writePasswords(char pw[][99], char* pwfile);
int writePasswords(char pw[][256], char* pwfile);