diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-08-31 17:49:31 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-08-31 17:49:31 +0200 |
| commit | ef86d9acedc8d8a5005cdae45070cfc5f5789964 (patch) | |
| tree | 286c703fcdac4dfc40196c2877d484a1475509f4 /test/checkers.cxx | |
| parent | e5310144b7b3bda62e3711420c53af73907ab2d4 (diff) | |
Fix more MSVC warnings in test apps (#109)
- test/checkers.cxx
- test/cube.cxx
- test/offscreen.cxx
- test/unittest_simple_terminal.cxx
- test/utf8.cxx
Diffstat (limited to 'test/checkers.cxx')
| -rw-r--r-- | test/checkers.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/checkers.cxx b/test/checkers.cxx index 95e670cf0..24dd47ca0 100644 --- a/test/checkers.cxx +++ b/test/checkers.cxx @@ -1305,7 +1305,7 @@ int didabort(void) { } int main(int argc, char **argv) { - seed = time(0); + seed = (int)time(0); newgame(); #ifdef BOTH fl_register_images(); |
