diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-03-10 10:03:39 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-03-10 10:03:39 +0100 |
commit | f8640490308f29de951b7b59f07be8b744f6e895 (patch) | |
tree | b4c2af1c051f698b7c3ce50c2dfc96547c3e76b3 /src/main.c | |
parent | e522c4ea04e9d899907deb5d0304f7de0823e9da (diff) |
Only set random seed once
Fixes non-random behaviour when randomizing file lists several times per
second.
Closes #349
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -42,6 +42,8 @@ int main(int argc, char **argv) { atexit(feh_clean_exit); + srand(getpid() * time(NULL) % ((unsigned int) -1)); + setup_signal_handlers(); init_parse_options(argc, argv); |