mirror of https://github.com/fairyglade/ly.git
Merge b8b6df849c
into d7b0251274
This commit is contained in:
commit
7eedb92d5d
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue