This commit is contained in:
noise 2018-05-05 16:53:01 +00:00 committed by GitHub
commit 7eedb92d5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#define _XOPEN_SOURCE
/* stdlib */
#include <assert.h>
#include <string.h>
#include <stdlib.h>
/* linux */
@ -102,6 +103,7 @@ int main(void)
/* saves the username and DE if enabled */
if(LY_CFG_WRITE_SAVE)
{
assert(LY_CFG_SAVE);
FILE* file = fopen(LY_CFG_SAVE, "ab+");
file = fopen(LY_CFG_SAVE, "wb");
fprintf(file, "%s\n%d", username, de_id);