diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-12-22 22:47:02 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-12-22 22:47:02 +0000 |
commit | f4cd3e8074641af68bf2b6a8579c3da58f0ac013 (patch) | |
tree | e0d8399f0df9baaaff825e575da4625935c64583 /src/version.c | |
parent | bb1004ee56bde6345b469568e2bdd86b54b32bf7 (diff) | |
download | vim-f4cd3e8074641af68bf2b6a8579c3da58f0ac013.zip |
updated for version 7.0175
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c index 69a47fff7..f14734813 100644 --- a/src/version.c +++ b/src/version.c @@ -1082,7 +1082,7 @@ intro_message(colon) /* Show the sponsor and register message one out of four times, the Uganda * message two out of four times. */ - sponsor = time(NULL); + sponsor = (int)time(NULL); sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0); /* start displaying the message lines after half of the blank lines */ |